/* Main Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-header {
    font-weight: 600;
}

.display-date {
    font-weight: 600;
    color: #0d6efd;
}

.result-table {
    width: 100%;
    margin: 20px 0;
}

.result-table th, .result-table td {
    padding: 15px;
    text-align: center;
}

.countdown-container {
    border: 2px solid #0d6efd;
    border-radius: 10px;
    max-width: 400px;
    margin: 0 auto;
}

/* Ad spaces */
.ad-space-left, .ad-space-right {
    top: 20px;
}

.ad-space-top, .ad-space-bottom {
    margin: 10px 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ad-space-left, .ad-space-right {
        display: none;
    }
}

/* Animation for new results */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.new-result {
    animation: pulse 2s infinite;
}