#construction-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(20, 30, 50, 0.95);
    color: white;
    padding: 15px 20px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.3s ease;
}

#construction-banner .banner-content {
    flex: 1;
    margin-right: 15px;
}

#construction-banner p {
    margin: 5px 0;
    font-size: 0.9rem;
}

#construction-banner a {
    color: #4b9cff;
    text-decoration: none;
    font-weight: bold;
}

#construction-banner a:hover {
    text-decoration: underline;
}

#close-banner {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 10px;
}

#close-banner:hover {
    color: #cccccc;
}

@media (max-width: 768px) {
    #construction-banner {
        padding: 10px;
    }
    
    #construction-banner p {
        font-size: 0.8rem;
    }
}
