/*
 Theme Name:   GP Marketer Free
 Theme URI:    https://wplitetheme.com/gp-marketer-free/
 Description:  GeneratePress Child theme for mobile responsive blog website. Using this GP Marketer child theme you can easily create a blog website. This GP Marketer Child theme design by wplitetheme.com
 Author:       WPLitetheme.com
 Author URI:   https://wplitetheme.com
 Template:     generatepress
 Version:      1.0
*/

.main-navigation {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
#submit {
	border-radius: 50px !important;
}
@media (max-width: 768px){
	.rank-math-breadcrumb p {
		margin: 0px 10px;
	}
}
/*Social Share*/
.wpjankari-social-wrapper {
    margin: 10px;
    font-size: 0;
    text-align: center;
	display: flex;
    flex-wrap: wrap;
}
.wpjankari-social-sharing {
	padding: 8px;
	margin: 4px;
	border-radius: 3px;
    flex: 1;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
}
.wpjankari-social-sharing:hover {
	transform: translateY(-3px);
	border: none;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
@media only screen and (max-width: 600px) {
    .wpjankari-social-sharing {
		display: inline-block;
    }
}
.wpjankari-social-sharing svg {
    position: relative;
    top: 0.15em;
    display: inline-block;
}
.wpjankari-social-facebook {
    fill: #fff;
    background-color: rgba(59, 89, 152, 1);
}
.wpjankari-social-twitter {
    fill: #fff;
    background-color: rgba(0, 0, 0);
}
.wpjankari-social-whatsapp {
    fill: #fff;
    background-color: rgba(37, 211, 102, 1);
}
.wpjankari-social-telegram {
    fill: #fff;
    background-color: rgb(2, 126, 189);
}
.wpjankari-social-more {
    fill: #fff;
    background-color: rgba(0, 0, 0);
}
/*Tag Cloud*/
.widget_epcl_tag_cloud a, .widget_tag_cloud a, .wp-block-tag-cloud a {
    font-size: 12px!important;
    margin-bottom: 8px;
    margin-right: 8px;
}
.widget_epcl_tag_cloud a, .widget_tag_cloud a, .wp-block-tag-cloud a,  div.tags a{
    color: #333333;
    display: inline-block;
    padding: 4px 15px;
    line-height: 1.2;
    margin-right: 10px;
    background: #fff;
    border: 1px solid #333333;
    border-radius: 25px;
}
/*Post Comment*/
@media (max-width: 768px){
	.comments-area {
		margin-left:15px;
		margin-right: 15px;
	}
}
.comments-area {
	border-radius: 7px;
	border: 1px solid var(--border-color);;
	margin-top: 50px;
}
.comment-reply-title {
	margin-top: -35px;
	margin-bottom: 40px;
	border: 1.5px solid var(--text-1);
	background: var(--background);
	padding: 4px 30px;
	border-radius: 50px;
	font-size: 22px;
	color: var(--text-1);
}



.postdate {
    color: #ff0000; 
    font-size: 15px; /* Changed font size to 15px */
    padding: 5px; 
    font-weight: 500;
    text-align: center;
    border: 1px solid black; /* Added border */
    border-radius: 5px; /* Rounded corners */
}



/* Style for the "Result Coming Soon" message */
#joinicn {
    color: #fff;
    background-color: #ffdc3f; /* Yellow background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    animation: mymovee 1s infinite; /* Animation for background-color change */
}

/* Keyframes for animation */
@keyframes mymovee {
    from {
        background-color: #ffdc3f; /* Start with yellow */
        color: black;
    }
    to {
        background-color: #000000; /* Change to black */
        color: white;
    }
}

/* Optional: Add a smaller text style for the countdown text */
.fixtxt {
    font-size: 10px;
}


.tab {
    display: flex; /* Flexbox for inline tabs */
    justify-content: space-between; /* Equal spacing between tabs */
    background-color: #ffdc3f; /* Tab container background color */
    text-align: center;
    padding: 5px;
}

.tab button {
    flex: 1; /* Equal width (33% each) */
    color: #000; /* Black text color */
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    background-color: #ffdc3f; /* Tab background color */
    padding: 10px;
    border: none; /* Remove border */
    border-bottom: 1px solid transparent; /* Default border */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Space between icon and text */
    width: 100%; /* Full width of each tab */
}

.tab button:hover {
    background-color: #fff000; /* Hover background color */
    color: #000; /* Hover text color */
}

.tab button.active {
    background-color: #ffdc3f; /* Keep the same background */
    color: #000; /* Active tab text color */
    border-bottom: 1px solid #000; /* Highlight active tab with border */
}

.tabcontent {
    display: none;
    padding: 10px;
    background-color: #fff; /* Background for tab content */
    border: 1px solid #ddd;
    text-align: center;
}

.tabcontent p {
    margin: 0;
    font-weight: bold;
    color: #000;
}
/* Optional: Icon Style (if you want to include icons in tabs) */
.tab button::before {
    content: "\1F4CC"; /* Example: Use Unicode for an icon like a pushpin */
    margin-right: 5px;
    font-size: 18px;
}

/* Stylish Refresh Button */
.refresh-btn {
    color: white;
    background: linear-gradient(145deg, #ff416c, #ff4b2b); /* Gradient background */
    padding: 10px 20px;
    border-radius: 50px; /* Circular button */
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out; /* Smooth transition effect */
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1), -2px -2px 12px rgba(255, 255, 255, 0.2); /* Subtle shadow */
}

/* Hover effect */
.refresh-btn:hover {
    background: linear-gradient(145deg, #ff4b2b, #ff416c); /* Reverse gradient */
    transform: translateY(-2px); /* Slightly raise the button */
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2), -2px -2px 15px rgba(255, 255, 255, 0.3); /* Enhanced shadow */
}

/* Focus effect */
.refresh-btn:focus {
    outline: none; /* Remove focus outline */
}

/* Active effect (when button is clicked) */
.refresh-btn:active {
    transform: translateY(1px); /* Button looks pressed */
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1), -2px -2px 8px rgba(255, 255, 255, 0.1); /* Pressed shadow effect */
}

/* Table Styling for GeneratePress */
.wp-block-table table.has-fixed-layout {
    width: 100%;
    border-collapse: collapse;
    
    border-left: 2px solid white;    /* Left white border */
    border-right: 2px solid white;   /* Right white border */
    border-top: 2px solid white;     /* Top white border */
}

.wp-block-table table.has-fixed-layout td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

/* Blue # only for left side table cells */
.wp-block-table table.has-fixed-layout td:first-child::before {
    content: "# ";
    color: blue;
    font-weight: bold;
}

moni



.widget {list-style: none;}
.row p{padding: 1px; text-align:justify; line-height: 1.6; font-size:16px; border-top: 1px solid #C0C0C0;}
.wp-block-image{margin-bottom: -1px;}
.wp-block-image{width:100%;height:auto;} .wp-block-image img{width:100%;height:auto;}
.wp-block-image figcaption{background: linear-gradient(0deg, black, #00000000);text-shadow: 0px 0px 10px #000;position: relative;color: #fff;padding: 8px;font-size: 14px;margin-top: -35px;}
.wp-block-image .aligncenter {margin-left: auto; margin-right: auto;display: table;}
.wp-block-code {user-select: all!important;font-size: 16px; background-color: #2e2e31; color: #ccc; padding: 10px;overflow-x:auto;}
.row ul{text-align: left;padding-left: 20px; border-top: 1px solid #000000; line-height: 1.6;} .row li ul{border-top:none;padding-left: 10px;}
.row ul li{margin-top: 9px; font-size: 16px; margin-bottom: 5px;}
.row ol{list-style:none;text-align: left;} .row ol li{padding: 4px;border-top: 1px solid #000000; line-height: 1.6; font-size: 16px;} .tcolumn ol li {font-size: 13px;display: -webkit-box;overflow: hidden;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
.postcolumn {user-select:none;border: 1px solid #000000; margin: 1px; border-radius: 5px;}
.row {user-select:none;background-color: #FFF; padding:1px;padding-bottom: 3px;}


moniold results

.lottery-date {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.lottery-results {
    margin-bottom: 30px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.lottery-time {
    margin-bottom: 20px;
}

.lottery-time h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}

.lottery-time img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}