/* Main Stylesheet for Time-Based Image Display System */

body {
    background-color: var(--bs-gray-900);
    color: var(--bs-light);
}

.image-card {
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.image-card .card-header {
    font-weight: 600;
    background-color: var(--bs-gray-800);
    border-bottom: 1px solid var(--bs-gray-700);
}

.image-card .card-body {
    background-color: var(--bs-gray-800);
    padding: 1.5rem;
}

.image-display {
    text-align: center;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.shortcode-content {
    background-color: var(--bs-gray-800);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.shortcode-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

/* Header and navigation styling */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 1.5em;
    margin-right: 0.5rem;
}

/* Clickable image styling */
.card-body img {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.card-body img:hover {
    transform: scale(1.05);
}

/* Image notification styling */
#image-notification {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 1rem;
    max-width: 90%;
    text-align: center;
}

    font-weight: 700;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--bs-primary);
}

/* Footer styling */
footer {
    background-color: var(--bs-gray-800);
    border-top: 1px solid var(--bs-gray-700);
    padding: 2rem 0;
    margin-top: 3rem;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Time display */
#current-time, #current-date {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-card {
        margin-bottom: 1rem;
    }
    
    .navbar .container {
        padding: 0.5rem;
    }
}