/* Tailwind CSS is already included via CDN */
#zth-raffle-form, #participant-search, #zth-countdown {
    max-width: 800px;
    margin: 0 auto;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
/*img {*/
/*    width: 48px;*/
/*    height: 48px;*/
/*    border-radius: 50%;*/
/*}*/
.hidden {
    display: none;
}
#zth-verification-data {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}
#zth-verification-data p {
    margin: 0.5rem 0;
    font-size: 1rem;
}
.tick-mark {
    color: #10b981;
    margin-right: 0.5rem;
}
#zth-confirm-button {
    transition: all 0.3s ease;
}
#zth-confirm-button:hover {
    background-color: #10b981;
}
#participant-list-container {
    max-height: 384px; /* Fixed height for scroll */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on mobile */
    scroll-behavior: smooth; /* Smooth scrolling */
    direction: ltr; /* Ensure consistent scroll direction */
}
.counter .digit {
    background: #111;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    width: 48px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 2px solid #333;
    transition: all 0.1s ease-in-out; /* Smooth transition for digit changes */
}
.counter .digit:last-child {
    background: #e60000;
    border-right: none;
}
#zth-countdown .counter {
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-radius: 8px;
    overflow: hidden;
}
#zth-countdown {
    text-align: center;
}
div#participant-count {
    text-align: center;
}

/* Animation for countdown */
.animate-pulse {
    animation: pulse 0.5s infinite; /* Pulse animation for countdown */
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Tailwind CSS is already included via CDN */
.zth-prize-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #3b82f6;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.zth-prize-checkbox:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="white"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd" /></svg>');
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
}
.zth-prize-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5); /* Added focus style for accessibility */
}



.entry-content .wp-audio-shortcode, .entry-content .wp-embedded-audio, .entry-content .wp-embedded-video, .entry-content .wp-video, .entry-content p
 {
    margin-bottom: 0.3em;
}


div#zth-winner-details p {
    text-align: left;
    background: #def;
    padding: 5px;
}
img.w-24.h-24.rounded-full {
    border-radius: 10%;
}

