/* Shared styles for both UK and USA pages */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #e6f0fd 0%, #b5d0f7 100%);
    color: #2c3e50;
}

.container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 80%;
    max-width: 600px;
    text-align: center;
}

.country-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.country-btn {
    width: 50px;
    height: 30px;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.country-btn:hover {
    transform: scale(1.1);
}

.country-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
}

.current-time {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.time-zone {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 20px 0;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.date-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.date-label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #7f8c8d;
}

.date-value {
    font-size: 1.3rem;
    color: #2c3e50;
}

.footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

#google-analytics-placeholder,
#google-adsense-placeholder {
    margin-top: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

@media (max-width: 600px) {
    .container {
        width: 90%;
        padding: 20px;
    }
    h1 {
        font-size: 1.5rem;
    }
    .time-zone {
        font-size: 1.8rem;
    }
}