.status-bar-section {
    margin: 20px 0;
}

.status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 420px;
    margin: 0 auto;
    min-height: 50px;
}

.status-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-symbol {
    font-size: 24px;
}

.status-level {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Dark theme support for status level */
[data-theme="dark"] .status-level {
    color: #f0f0f0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.status-center {
    flex: 1;
    margin: 0 20px;
}

.exp-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.exp-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(176, 224, 230, 0.8), 
        rgba(135, 206, 235, 0.9), 
        rgba(173, 216, 230, 0.8)
    );
    border-radius: 5px;
    transition: width 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.badges-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-scroll-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    opacity: 0.7;
    transition: all 0.2s;
    color: #333;
    font-weight: bold;
}

.badge-scroll-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.badges-viewport {
    width: 75px;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.badges-viewport:active {
    cursor: grabbing;
}

.badges-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 4px;
}

.badge {
    font-size: 20px;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .status-bar {
        max-width: 350px;
        padding: 10px 16px;
    }
    
    .status-symbol {
        font-size: 20px;
    }
    
    .status-level {
        font-size: 14px;
    }
    
    .badge {
        font-size: 18px;
        width: 20px;
    }
    
    .badges-viewport {
        width: 65px;
    }
}
