/* CSS Custom Properties for Font Sizes */
:root {
    --font-size-xs: 10px;
    --font-size-s: 13px;
    --font-size-m: 14px;
    --font-size-l: 16px;
    --font-size-xl: 20px;
    --font-size-xxl: 22px;
}

/* static/css/dashboard.css */
.dashboard-container {
    position: relative;
    min-height: 80vh;
    display: flex;
    background: var(--background-light);
}.dashboard-header {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.dashboard-content {
    padding: 0px 15px;
    background: var(--background-light);
    margin-left: 80px; /* Platz für die Sidebar */
    flex: 1;
    transition: margin-left 0.3s ease;
    font-size: var(--font-size-s);
}

.dashboard-buttons {
    position: fixed;
    left: 2px;
    top: 153px; /* Näher am oberen Rand */
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 8px; /* Kleinerer Abstand zwischen Buttons */
    z-index: 1000;
    padding: 2px 2px; /* Weniger Padding für kompaktere Buttons */

    overflow-y: auto;
}

.dashboard-button {
    padding: 8px 4px;
    background: var(--shop-second-btn);
    color: #333;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid #ddd;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--font-size-xs); /* Kleinere Schrift */
    font-weight: 500;
    line-height: 1.2;
}

.dashboard-button:hover {
    background: var(--shop-btn-hover);
    color: var(--white);
    transform: translateY(-3px); /* Nach oben statt rechts */
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.dashboard-button i {
    font-size: var(--font-size-s); /* Kleinere Icons */
    margin-bottom: 4px;
}

/* Active Button Styling */
.dashboard-button.active {
    background: var(--shop-btn);
    color: white;
    border-color: #17702c;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .dashboard-content {
        margin-left: 65px;
        padding: 0px 15px;
        margin-top: 10px;
    }
    
    .dashboard-buttons {
        width: auto;
        top: 150px;
        padding: 8px 3px;
        gap: 6px;
    }
    
    .dashboard-button {
        font-size: var(--font-size-xs);
        padding: 6px 2px;
    }
    
    .dashboard-button i {
        font-size: var(--font-size-s);
        margin-bottom: 3px;
    }
}


/* Scrollbar für die Sidebar */
.dashboard-buttons::-webkit-scrollbar {
    width: 2px;
}

.dashboard-buttons::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 1px;
}