.dsl-notification-bar {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 99999;
    padding: 10px 40px 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    transition: transform 0.3s ease;
}

.dsl-notification-bar-top {
    top: 0;
}

.dsl-notification-bar-bottom {
    bottom: 0;
}

body.has-dsl-notification-bar-top {
    margin-top: 50px !important;
}

body.has-dsl-notification-bar-bottom {
    margin-bottom: 50px !important;
}

.dsl-notification-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.dsl-notification-bar-message {
    margin: 0;
    line-height: 1.4;
}

.dsl-notification-bar-message p {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.dsl-notification-bar-countdown {
    margin-left: 10px;
    font-weight: bold;
    font-family: monospace;
    display: inline-block;
}

.dsl-notification-bar-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 5px;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 100000;
}

.dsl-notification-bar-close:hover {
    opacity: 1;
}

/* Button Styles */
.dsl-notification-bar-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none !important;
    font-weight: 600;
    line-height: 1.2;
    transition: opacity 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dsl-notification-bar-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.dsl-notification-bar-btn:active {
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .dsl-notification-bar {
        padding: 15px 35px 15px 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .dsl-notification-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .dsl-notification-bar-close {
        top: 15px;
        transform: none;
    }
}