body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #2d1b1b 100%);
    color: #ffffff;
}

/* Entferne alle grauen Texte */
.text-muted {
    color: #ffcc00 !important;
}

.form-text {
    color: #ffcc00 !important;
}

small {
    color: #ffcc00 !important;
}

p, span, div {
    color: #ffffff !important;
}

.card-text, .card-body p, .card-body span {
    color: #ffffff !important;
}

main {
    flex: 1;
}

.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ffffff;
}

.pyro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn {
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.badge {
    font-size: 0.9em;
}

.navbar-brand {
    transition: all 0.3s;
}

.navbar-brand:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Pyro Theme Colors */
:root {
    --pyro-red: #ff6b35;
    --pyro-orange: #f7931e;
    --pyro-yellow: #ffcc00;
    --pyro-dark: #1a1a1a;
    --pyro-darker: #0a0a0a;
}

/* Pyro Sidebar Navigation Styling */
.pyro-sidebar {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(45, 27, 27, 0.98));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 107, 53, 0.05);
    overflow: hidden;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 1.25rem 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
}

.sidebar-nav {
    padding: 0.5rem;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: #ff6b35 #1a1a1a;
}

.sidebar-nav::-webkit-scrollbar {
    width: 6px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 3px;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6b35, #f7931e);
    border-radius: 3px;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f7931e, #ffcc00);
}

.sidebar-item {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    margin-bottom: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #cccccc;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.sidebar-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b35, #f7931e, #ffcc00);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-item:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ffcc00;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.sidebar-item:hover::before {
    transform: scaleY(1);
}

.sidebar-item.active {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.15));
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4), inset 0 0 20px rgba(255, 107, 53, 0.1);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
}

.sidebar-item.active::before {
    transform: scaleY(1);
}

.sidebar-item.active::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #ff6b35;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.sidebar-icon {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    min-width: 24px;
    text-align: center;
}

.sidebar-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-badge {
    background: linear-gradient(135deg, #ffcc00, #f7931e);
    color: #000;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 204, 0, 0.8);
    }
}

.sidebar-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
    margin: 1rem 0;
}

.sidebar-section-title {
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 27, 27, 0.95));
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 107, 53, 0.05);
    min-height: 500px;
}

@media (max-width: 768px) {
    .pyro-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 1rem;
    }
    
    .sidebar-item {
        font-size: 0.85rem;
        padding: 0.75rem 0.875rem;
    }
}

