.lightbar-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    text-align: center;
    z-index: 9999;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

body.lightbar-active {
    margin-top: 55px !important;
}

.lightbar-bar.hide {
    opacity: 0;
    transform: translateY(-100%);
}

.lightbar-close {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    transition: opacity 0.3s ease;
}

.lightbar-close:hover {
    opacity: 0.7;
}

.lightbar-icon i {
    font-size: 20px;
    margin-right: 8px;
}

.lightbar-btn {
    padding: 6px 14px;
    border-radius: 4px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s ease;
}
.lightbar-btn:hover {
    opacity: 0.8;
}
