
.custom-dark {
    background-color: #2d2d2d !important;
}

.custom-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px auto;
    max-width: 500px;
}

.custom-range-slider {
    position: relative;
    width: 100%;
}

.custom-range {
    width: 100%;
    height: 35px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: linear-gradient(to right, rgb(85, 239, 196) 0%, rgb(85, 239, 196) 50%, #ddd 50%, #ddd 100%);
    border-radius: 50px;
    outline: none;
    transition: background 0.15s ease-in-out;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 35px;
    height: 35px;
    background: rgb(0, 184, 255);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.custom-range::-moz-range-thumb {
    width: 35px;
    height: 35px;
    background: rgb(0, 184, 255);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}



.custom-btn:hover {
    background-color: #e0e0e0;
}







.btn-secondary {
    --bs-btn-bg: #15151500;
}

.btn-success, .bg-success{
    background-color: #65fd88 !important;
    color: #000000 !important;
}


.custom-progress-container {
    width: 100%;
    height: 37px;  /* Ensure enough height for progress bar */
    background: #52d3fb;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 60px; /* Give space for prize text */
}

.custom-progress-bar {
    height: 100%;
    width: 0%;
    background: #65fd88;
    transition: width 1.5s ease-in-out;
    border: 4px solid beige;
    border-radius: 20px;
}

.custom-progress-text {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    top: 50%;
    transform: translateY(-50%);
    font-family: Arial, sans-serif;
    z-index: 3; /* Ensure text is on top */
}






/* Smooth Hover Effect */
#addToCartBtn {
    background: #65fd88;
    border: none;
    transition: background 0.4s ease-in-out, transform 0.2s ease;
}

/* Hover Animation */
#addToCartBtn:hover {
    background: #52d3fb !important; /* Slightly darker transition */
    transform: scale(1.05); /* Subtle grow effect */
    color: #0b0b0b !important; 
}

/* Active Click Effect */
#addToCartBtn:active {
    background: #65fd6a; /* Darker shade for click effect */
    transform: scale(0.98); /* Slight shrink effect */
}

















 /* Tab Styling */
 .participant-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.tab-button {
    background: #222;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    border-radius: 5px;
}

.tab-button:hover, .tab-button.active {
    background: #52d3fb;
    color: #000;
    font-weight: bold;
}

/* Accordion Styling */
.accordion {
    width: 100%;
}

.accordion-item {
    background: #111;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    background: #222;
    color: white;
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    border-bottom: 2px solid #52d3fb;
}

.accordion-header:hover {
    background: #52d3fb;
    color: #000;
}

.accordion-content {
    display: none;
    padding: 15px;
    background: #181818;
}

.accordion-header i {
    transition: 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

/* Participants Grid (Two Columns per Row) */
.participants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}

.participant-card {
    background: #222;
    padding: 15px;
    border-radius: 5px;
    transition: 0.3s;
    border-left: 4px solid #65fd88;
}

.participant-card:hover {
    background: #333;
}

/* Winner Card Styling */
.winner-card {
    background: #111;
    border-left: 5px solid #65fd88;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
    max-width: 600px;
    margin: auto;
}

.winner-card:hover {
    background: #222;
}

/* Tab Contents */
.lottery-desc-tab.tab-content  {
    display: none;
}

.tab-content.active {
    display: block;
}




#countdown-timer{
    margin: 10px 0px;
}

.time-count {


    width: 30%; /* Fixed width */
    text-align: center; /* Center the text */
    padding: 15px 0; /* Enough padding for good spacing */
    margin-right: 8px;
    border: 2px solid #ffffff; /* White border for a neat look */
    border-radius: 8px; /* Rounded corners */
    font-size: 1.5rem; /* Make the numbers larger */
}

/* Adjusting the pagination styling */
.pagination {
    font-size: 16px; /* Increase font size */
}

.pagination .page-item .page-link {
    padding: 10px 20px; /* Add more padding for better spacing */
    font-size: 16px; /* Increase font size for links */
    color: #007bff; /* Change link color */
}

.pagination .page-item.active .page-link {
    background-color: #007bff; /* Active page background color */
    border-color: #007bff; /* Active page border color */
    color: white; /* Active page link color */
}

.pagination .page-item .page-link:hover {
    background-color: #0056b3; /* Hover effect color */
    color: white; /* Hover link color */
}

.pagination .page-item {
    border-radius: 5px;
    margin: 5px 5px;
}

.tabs.participant-tabs {
    margin-bottom: 50px;
}
.custom-accordion {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    background: #222;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: 0.3s;
}

.accordion-header:hover {
    background: #52d3fb;
}

.accordion-toggle {
    font-size: 20px;
    font-weight: bold;
}

.accordion-body {
    display: none;
    background: #f8f9fa;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.winner-image {
    max-width: 150px;
    border-radius: 5px;
    margin-top: 10px;
}


.prize-image{
    max-width: 100%;
    height: 100px;
}


.custom-single-product-title {
    font-size: 44px !important;
}