Lager improved · CSS
Kopieren

/* ===== GLOBALE STYLES ===== */
body { 
    font-family: Arial, sans-serif; 
    margin: 20px; 
    background-color: #f8f9fa;
}

/* ===== HEADER MIT CORPORATE DESIGN ===== */
.header { 
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    color: white;
    padding: 20px; 
    margin-bottom: 20px; 
    position: relative; 
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}
.header h2 {
    margin: 0;
    font-size: 28px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.header p {
    margin: 5px 0 0 0;
    opacity: 0.9;
}

/* ===== HORIZONTALES DROPDOWN-MENÜ ===== */
.menubar {
    display: flex;
    gap: 0;
    align-items: center;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0;
    position: relative;
}

/* Einzelne Menü-Items */
.menu-item {
    position: relative;
}

/* Hauptmenü-Links */
.menu-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s;
    border-radius: 8px;
}

.menu-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-item.active .menu-link {
    background: rgba(255, 255, 255, 0.25);
}

/* Pfeil-Icon */
.arrow {
    font-size: 10px;
    margin-left: 2px;
    transition: transform 0.3s;
}

.menu-item.active .arrow {
    transform: rotate(180deg);
}

/* Dropdown-Menü */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    padding: 8px 0;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.menu-item.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown-Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: #424242;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #8bc34a;
    padding-left: 25px;
}

/* Admin-Menü Styling */
.admin-menu {
    color: #ffcccc;
}

/* Logout-Link (direkter Menüpunkt) */
.logout-link {
    color: #ffcccc !important;
}

.logout-link:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* Logout-Item (für Dropdown-Einträge, falls noch verwendet) */
.logout-item {
    color: #f44336;
    border-top: 1px solid #e0e0e0;
    margin-top: 5px;
    padding-top: 15px;
}

.logout-item:hover {
    background: #ffebee;
    color: #d32f2f;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

/* ===== ADMIN CONTAINER UND SECTIONEN ===== */
.admin-container { 
    max-width: 900px; 
    margin: 0 auto;
}

.admin-section { 
    background: white; 
    padding: 30px; 
    margin-bottom: 25px; 
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.admin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8bc34a 0%, #689f38 100%);
}

.section-title {
    color: #424242;
    margin: 0 0 25px 0;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== MESSAGES ===== */
.success-message {
    color: #2e7d32;
    background: #c8e6c9;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #4caf50;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.error-message {
    color: #c62828;
    background: #ffcdd2;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #f44336;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* ===== FORM STYLING ===== */
.form-group { 
    margin-bottom: 20px; 
}

.form-label { 
    display: block; 
    margin-bottom: 8px; 
    font-weight: 600; 
    color: #424242;
    font-size: 14px;
}

.form-input, .form-textarea, .form-select { 
    width: 100%; 
    padding: 12px; 
    border: 2px solid #e0e0e0; 
    border-radius: 8px; 
    box-sizing: border-box;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: #8bc34a;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.1);
}

.form-textarea { 
    height: 100px; 
    resize: vertical; 
    font-family: Arial, sans-serif;
}

.form-row { 
    display: flex; 
    gap: 20px; 
}
.form-row .form-group { 
    flex: 1; 
}
.bestand-input {
	width:50px; 
	height:26px}

/* ===== BUTTONS ===== */
.btn { 
    padding: 12px 20px; 
    margin: 8px 8px 8px 0; 
    text-decoration: none; 
    border-radius: 6px; 
    border: none; 
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary { 
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(139, 195, 74, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.4);
}

.btn-danger { 
    background: #f44336; 
    color: white; 
}
.btn-danger:hover {
    background: #d32f2f;
    transform: translateY(-1px);
}

.btn-success { 
    background: #4caf50; 
    color: white; 
}
.btn-success:hover {
    background: #43a047;
    transform: translateY(-1px);
}

.btn-secondary { 
    background: #6c757d; 
    color: white; 
}
.btn-secondary:hover {
    background: #5a6268;
}
.btn-minus{background: #F44336CC}
.btn-plus{background: #689f38; font-size:20px}


/* ===== USER LIST (ADMIN) ===== */
.user-list { 
    margin-top: 25px; 
}
 a.admin-btn { 
    background: rgba(244, 67, 54, 0.8);
    border-color: rgba(244, 67, 54, 0.9);
}
 a.admin-btn:hover { 
    background: rgba(244, 67, 54, 0.9);
}

.user-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px; 
    border: 1px solid #e0e0e0; 
    border-radius: 8px; 
    margin-bottom: 15px; 
    background: #f8f9fa;
    transition: all 0.2s;
}
.user-item:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transform: translateY(-1px);
}

.user-info { 
    flex: 1; 
}
.user-info strong {
    color: #424242;
    font-size: 16px;
}
.user-badge {
    background: #8bc34a;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    margin-left: 8px;
}
.user-meta {
    color: #666;
    font-size: 13px;
    margin-top: 5px;
}

.user-actions { 
    display: flex; 
    gap: 10px; 
    flex-shrink: 0;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.modal-content {
    background: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    position: relative;
}
.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8bc34a 0%, #689f38 100%);
    border-radius: 12px 12px 0 0;
}

/* Bild-Modal spezifisch (für Artikelliste) */
#imageModal .modal-content {
    background: transparent;
    border-radius: 0;
    padding: 0;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: none;
}
#imageModal .modal-content::before {
    display: none;
}
#imageModal .modal-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.close {
    color: #999;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}
.close:hover {
    color: #333;
}

.modal h3 {
    color: #424242;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== SECURITY NOTICE ===== */
.security-notice {
    background: #fff3e0;
    border: 1px solid #ff9800;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    color: #e65100;
}
.security-notice h4 {
    margin: 0 0 10px 0;
    color: #e65100;
    font-size: 14px;
}
.security-notice ul {
    margin: 0;
    padding-left: 20px;
    font-size: 13px;
}

/* ===== PAGE CONTENT ===== */
.page-content {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.page-title {
    color: #424242;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== ACTION BAR ===== */
.action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.btn-new {
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(139, 195, 74, 0.3);
    cursor: pointer;
}

.btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.4);
}

/* ===== TABLE STYLING ===== */
.table-container { 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; 
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background: white;
}

table { 
    width: 100%; 
    border-collapse: collapse; 
    margin: 0;
}

th, td { 
    border: 1px solid #e0e0e0; 
    padding: 12px 8px; 
    text-align: left; 
    vertical-align: top; 
}

th { 
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 10;
}

tr:nth-child(even) { 
    background-color: #f8f9fa; 
}

tr:hover { 
    background-color: #e8f5e8; 
}

/* ===== BESTAND STYLING ===== */
.bestand-niedrig { 
    color: #c62828; 
    font-weight: bold; 
}
.bestand-ok { 
    color: #2e7d32; 
    font-weight: 600;
}

/* ===== LAGERPLATZ STYLING ===== */
.lagerplatz { 
    font-family: 'Courier New', monospace; 
    font-weight: bold;
    color: #8bc34a;
    background: rgba(139, 195, 74, 0.1);
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 13px;
}

.lagerplatz-container {
    position: relative;
    display: inline-block;
}
.lagerplatz-highlight {
    font-weight: bold;
    font-size: 16px;
    font-family: 'Courier New', monospace;
    color: #8bc34a;
    letter-spacing: 1px;
    background: rgba(139, 195, 74, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}
.lagerplatz-tooltip {
    visibility: hidden;
    background-color: #424242;
    color: white;
    text-align: center;
    padding: 5px 8px;
    border-radius: 4px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -50px;
    font-size: 11px;
    opacity: 0;
    transition: opacity 0.3s;
}
.lagerplatz-container:hover .lagerplatz-tooltip {
    visibility: visible;
    opacity: 1;
}

/* ===== BILD-STYLING ===== */
/* Für Listen und Übersichten: Kleine Artikel-Bilder */
.artikel-image, .result-image { 
    width: 60px; 
    height: 60px; 
    object-fit: cover; 
    border-radius: 8px; 
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.artikel-image:hover { 
    transform: scale(1.1); 
}

/* Für Tabellen: Artikel-Bild (falls verwendet) */
.artikel-bild { 
    width: 60px; 
    height: 60px; 
    object-fit: cover; 
    border-radius: 8px; 
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.artikel-bild:hover { 
    transform: scale(1.1); 
}

.kein-bild, .no-image { 
    width: 60px; 
    height: 60px; 
    background: #f0f0f0; 
    border: 2px dashed #ccc; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 10px; 
    color: #999; 
    border-radius: 8px;
    flex-shrink: 0;
}

/* ===== BUTTON VARIANTS ===== */
.btn-small { 
    padding: 6px 12px; 
    margin: 2px; 
    text-decoration: none; 
    border-radius: 4px; 
    font-size: 12px; 
    display: inline-block;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-edit { 
    background: #8bc34a; 
    color: white; 
}
.btn-edit:hover {
    background: #689f38;
    transform: translateY(-1px);
}

.btn-delete { 
    background: #f44336; 
    color: white; 
}
.btn-delete:hover {
    background: #d32f2f;
    transform: translateY(-1px);
}

.btn-open, .btn-view { 
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(139, 195, 74, 0.3);
    padding: 8px 16px;
    font-size: 12px;
}
.btn-open:hover, .btn-view:hover {
    background: linear-gradient(135deg, #689f38 0%, #558b2f 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.4);
}

.btn-reorder {
    background: #424242; 
    color: white; 
}
.btn-reorder:hover {
    background: #2e2e2e;
    transform: translateY(-1px);
}

.btn-print {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-print:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

.btn-print:focus,
.btn-print:visited,
.btn-print:active {
    color: white;
    text-decoration: none;
}

.btn-entnehmen {
    background: #8bc34a;
    color: white;
}
.btn-entnehmen:hover {
    background: #689f38;
    transform: translateY(-1px);
}
.btn-entnehmen:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-add {
    background: #8bc34a;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
}
.btn-add:hover {
    background: #689f38;
}

.btn-cancel {
    background: #6c757d;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}
.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
.empty-state h3 {
    color: #8bc34a;
    margin-bottom: 15px;
}

/* ===== DASHBOARD SEARCH BOX ===== */
.search-container { 
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    padding: 30px; 
    border-radius: 12px; 
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.2);
}
.search-title { 
    color: white; 
    text-align: center; 
    margin-bottom: 20px; 
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.search-form { 
    display: flex; 
    gap: 10px; 
    max-width: 600px; 
    margin: 0 auto; 
}
.search-input { 
    flex: 1; 
    padding: 15px; 
    border: none; 
    border-radius: 8px; 
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.search-btn { 
    padding: 15px 25px; 
    background: rgba(255, 255, 255, 0.2);
    color: white; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 16px;
    transition: background 0.3s;
	border: 1px solid rgba(255, 255, 255, 0.3);
	height: 46px;
}
.search-btn:hover { 
    background: #2e2e2e;
}
.search-help { 
    text-align: center; 
    color: rgba(255,255,255,0.9); 
    margin-top: 10px; 
    font-size: 14px; 
}

/* ===== DASHBOARD STATS ===== */
.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
    margin-bottom: 30px; 
}
.stat-card { 
    background: white; 
    padding: 20px; 
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    border-left: 4px solid #8bc34a;
    transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.stat-number { 
    font-size: 32px; 
    font-weight: bold; 
    color: #8bc34a; 
    margin-bottom: 5px; 
}
.stat-label { 
    color: #666; 
    font-size: 14px; 
}
.stat-warning { 
    border-left-color: #ff5722; 
}
.stat-warning .stat-number { 
    color: #ff5722; 
}
.stat-card-link { 
    text-decoration: none; 
    color: inherit; 
    transition: transform 0.2s; 
}
.stat-card-link:hover { 
    transform: translateY(-2px); 
}
.stat-card-link .stat-card { 
    cursor: pointer; 
    border: 2px solid transparent;
}
.stat-card-link:hover .stat-card { 
    border-color: #8bc34a; 
}
.stat-action { 
    font-size: 12px; 
    color: #666; 
    margin-top: 8px; 
    opacity: 0; 
    transition: opacity 0.3s; 
}
.stat-card-link:hover .stat-action { 
    opacity: 1; 
}

/* ===== SEARCH RESULTS ===== */
.search-results, .kommission-results, .artikel-container { 
    background: white; 
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}
.results-header, .artikel-header { 
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    color: white;
    padding: 15px; 
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.results-header h4, .artikel-header h3, .artikel-header h4 {
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.result-item, .kommission-item, .artikel-item { 
    padding: 15px; 
    border-bottom: 1px solid #eee; 
    display: flex; 
    align-items: center; 
    gap: 15px;
    transition: background 0.2s;
}
.result-item:hover, .kommission-item:hover, .artikel-item:hover { 
    background: #f8f9fa; 
}
.result-item:last-child, .kommission-item:last-child, .artikel-item:last-child { 
    border-bottom: none; 
}

.result-content, .kommission-content, .artikel-content { 
    flex: 1; 
}
.result-title, .kommission-title, .artikel-title { 
    font-weight: bold; 
    color: #333; 
    margin-bottom: 5px; 
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}
/* ===== ARTIKEL DETAILS ===== */
/* Für Listen/Übersichten: Inline Details */
.result-details, .kommission-details, .artikel-details { 
    font-size: 14px; 
    color: #666; 
    margin-bottom: 5px; 
}

/* Für DELETE-SEITE: Grid Layout der Detail-Items */
.delete-container .artikel-details { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
    margin: 15px 0; 
}
.result-meta, .kommission-meta, .artikel-meta { 
    font-size: 12px; 
    color: #999; 
    display: flex;
    gap: 20px;
}

.result-actions, .kommission-actions, .artikel-actions { 
    display: flex; 
    gap: 8px; 
    flex-shrink: 0;
}

/* ===== STATUS BADGES ===== */
.status-badge { 
    padding: 4px 10px; 
    border-radius: 12px; 
    font-size: 11px; 
    font-weight: bold; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.status-leer { 
    background: #ffebee; 
    color: #c62828; 
    border: 1px solid #f44336;
}
.status-kritisch { 
    background: #fff3e0; 
    color: #e65100; 
    border: 1px solid #ff9800;
}
.status-niedrig { 
    background: #fffde7; 
    color: #f57f17; 
    border: 1px solid #ffc107;
}
.status-offen { 
    background: #fff3cd; 
    color: #856404; 
}
.status-in-bearbeitung { 
    background: #cce5ff; 
    color: #004085; 
}
.status-abgeschlossen { 
    background: #d4edda; 
    color: #155724; 
}
.status-teilweise {
    background: #cce5ff;
    color: #004085;
}

.bestand-status { 
    padding: 4px 8px; 
    border-radius: 12px; 
    font-size: 11px; 
    font-weight: bold; 
}
.bestand-ok { 
    background: #c8e6c9; 
    color: #2e7d32; 
}

/* ===== HIGHLIGHT ===== */
.highlight { 
    background: #ffeb3b; 
    padding: 2px 4px; 
    border-radius: 3px; 
}

/* ===== KATEGORIEN WIDGET ===== */
.categories-widget { 
    background: white; 
    padding: 20px; 
    border-radius: 12px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.categories-widget h4 {
    color: #424242;
    margin-top: 0;
}
.category-item { 
    display: flex; 
    justify-content: space-between; 
    padding: 8px 0; 
    border-bottom: 1px solid #eee; 
}
.category-item:last-child { 
    border-bottom: none; 
}

/* ===== FORM CONTAINER UND FORM SECTIONS ===== */
.form-container { 
    max-width: 800px; 
    background: white; 
    padding: 30px; 
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin: 0 auto;
}

.form-title {
    color: #424242;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #8bc34a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.required::after {
    content: " *";
    color: #f44336;
}

/* Help Text */
.form-help { 
    font-size: 12px; 
    color: #666; 
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== FILE INPUT ===== */
.file-input { 
    border: 2px dashed #8bc34a; 
    padding: 25px; 
    text-align: center; 
    border-radius: 8px;
    background: #f1f8e9;
    transition: all 0.3s ease;
    cursor: pointer;
}
.file-input:hover { 
    border-color: #689f38;
    background: #e8f5e8;
}

.file-input input[type="file"] {
    margin-bottom: 10px;
    cursor: pointer;
}

.file-preview {
    margin-top: 15px;
    text-align: center;
    display: none;
}

.file-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ===== CURRENT IMAGE ===== */
.current-image { 
    margin-bottom: 20px; 
    padding: 15px; 
    background: #f8f9fa; 
    border-radius: 8px; 
    border: 1px solid #e0e0e0; 
}
.current-image img { 
    max-width: 200px; 
    max-height: 200px; 
    border-radius: 8px; 
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.current-image img:hover {
    transform: scale(1.02);
}

.checkbox-group { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    margin-top: 15px; 
}
.checkbox-group input[type="checkbox"] { 
    width: auto; 
    margin: 0;
}

/* ===== FORM SECTIONS ===== */
.form-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ===== QUICK TIPS ===== */
.quick-tips {
    background: #e8f5e8;
    border: 1px solid #8bc34a;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.quick-tips h4 {
    color: #2e7d32;
    margin: 0 0 10px 0;
    font-size: 14px;
}

.quick-tips ul {
    margin: 0;
    padding-left: 20px;
    color: #424242;
    font-size: 13px;
}

/* ===== DELETE CONTAINER ===== */
.delete-container { 
    max-width: 700px; 
    background: white; 
    padding: 30px; 
    border-radius: 12px; 
    border: 3px solid #ffcdd2;
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.15);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.delete-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #f44336 0%, #d32f2f 100%);
}

.warning-icon { 
    font-size: 64px; 
    color: #f44336; 
    text-align: center; 
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.delete-title {
    text-align: center;
    color: #f44336;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.warning-text {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    padding: 15px;
    background: #fff3e0;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

/* ===== ARTIKEL INFO ===== */
.artikel-info { 
    background: #f8f9fa; 
    padding: 20px; 
    border-radius: 8px; 
    margin: 20px 0; 
    border-left: 4px solid #8bc34a;
}

.artikel-info h4 {
    margin-top: 0;
    color: #424242;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Für DELETE-Seite: Artikel-Bild Container */
.artikel-bild { 
    text-align: center; 
    margin: 20px 0; 
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.artikel-bild img { 
    max-width: 200px; 
    max-height: 200px; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* ===== DELETE-SEITE SPEZIFISCHE STYLES ===== */
.delete-container .artikel-details { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
    margin: 15px 0; 
}

.detail-item { 
    background: white;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}
.detail-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.detail-label { 
    font-weight: 600; 
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
}

.detail-value { 
    color: #424242;
    font-size: 14px;
    font-weight: 500;
}

.lagerplatz-value {
    font-family: 'Courier New', monospace;
    background: rgba(139, 195, 74, 0.1);
    color: #8bc34a;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

/* Description */
.description-item {
    grid-column: 1 / -1;
    margin-top: 10px;
}

/* ===== FORM ACTIONS ===== */
.form-actions { 
    text-align: center; 
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

/* ===== PAGE HEADER MIT WARNUNG ===== */
.page-header { 
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white; 
    padding: 30px; 
    border-radius: 12px; 
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}
@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.page-title { 
    font-size: 28px; 
    margin-bottom: 10px; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.page-subtitle { 
    opacity: 0.9; 
    font-size: 16px; 
}

/* ===== STATUS OVERVIEW ===== */
.status-overview { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 20px; 
    margin-bottom: 30px; 
}
.status-card { 
    background: white; 
    padding: 20px; 
    border-radius: 12px; 
    text-align: center; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.status-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* ===== BESTAND INFO ===== */
.bestand-info { 
    text-align: center; 
    flex-shrink: 0;
    min-width: 120px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.bestand-aktuell { 
    font-size: 24px; 
    font-weight: bold; 
    margin-bottom: 5px; 
}
.bestand-soll { 
    font-size: 12px; 
    color: #666; 
    margin-bottom: 5px;
}
.fehlmenge { 
    font-size: 11px; 
    color: #f44336; 
    font-weight: bold; 
    background: #ffebee;
    padding: 2px 6px;
    border-radius: 4px;
}

/* ===== KOMMISSION HEADER ===== */
.kommission-header {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    position: relative;
}
.kommission-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8bc34a 0%, #689f38 100%);
    border-radius: 12px 12px 0 0;
}

.kommission-title {
    color: #424242;
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 600;
}
.kommission-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 15px;
}
.info-item {
    display: flex;
    flex-direction: column;
}
.info-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}
.info-value {
    font-size: 16px;
    color: #424242;
    font-weight: 500;
}

/* ===== MENGE INFO ===== */
.menge-info {
    text-align: center;
    min-width: 120px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.menge-benoetigt {
    font-size: 18px;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 5px;
}
.menge-entnommen {
    font-size: 14px;
    color: #4caf50;
    margin-bottom: 5px;
}
.menge-noch {
    font-size: 12px;
    color: #666;
}

.progress-info {
    text-align: center;
    min-width: 100px;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
}
.progress-number {
    font-size: 16px;
    font-weight: bold;
    color: #8bc34a;
}
.progress-label {
    font-size: 11px;
    color: #666;
}

/* ===== ENTNAHME SECTION ===== */
.entnahme-section {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.menge-input {
    width: 80px;
    padding: 8px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
}
.menge-input:focus {
    outline: none;
    border-color: #8bc34a;
}

/* ===== ADD ARTIKEL BUTTON ===== */
.add-artikel-item {
    padding: 20px;
    text-align: center;
    border: 2px dashed #8bc34a;
    background: #f1f8e9;
    cursor: pointer;
    transition: all 0.3s;
}
.add-artikel-item:hover {
    background: #e8f5e8;
    border-color: #689f38;
}
.add-icon {
    font-size: 24px;
    color: #8bc34a;
    margin-bottom: 10px;
}
.add-text {
    color: #8bc34a;
    font-weight: 600;
}

/* ===== SEARCH SECTION (MODAL) ===== */
.search-section {
    margin-bottom: 25px;
}
.search-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 15px;
}
.search-input:focus {
    outline: none;
    border-color: #8bc34a;
}

.search-result {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.2s;
}
.search-result:hover {
    background: #f8f9fa;
    border-color: #8bc34a;
}
.search-result.selected {
    background: #e8f5e8;
    border-color: #8bc34a;
}

.menge-section {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    display: none;
}
.menge-section.active {
    display: block;
}

/* ===== LOGIN STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Überschreibung für Login-Seite */
.login-body { 
    font-family: Arial, sans-serif; 
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0;
}

.login-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 420px;
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #8bc34a 0%, #689f38 100%);
}

.company-logo {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    color: #424242;
    margin-bottom: 5px;
    font-style: italic;
    letter-spacing: 1px;
}

.logo-slogan {
    font-size: 14px;
    color: #666;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-icon {
    width: 60px;
    height: 40px;
    margin: 15px auto 20px;
    position: relative;
}
.logo-image {
    max-width: 300px;
    max-height: 80px;
    width: auto;
    height: auto;
    margin-bottom: 15px;
}

/* CSS Tisch-Icon */
.table-icon {
    width: 50px;
    height: 30px;
    background: #8bc34a;
    border-radius: 4px;
    position: relative;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

.table-icon::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 5px;
    width: 3px;
    height: 15px;
    background: #424242;
}

.table-icon::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 5px;
    width: 3px;
    height: 15px;
    background: #424242;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
}

.login-title {
    font-size: 24px;
    color: #424242;
    margin-bottom: 8px;
    font-weight: 600;
}

.login-subtitle {
    color: #666;
    font-size: 14px;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
    pointer-events: none;
}

.form-input.with-icon {
    padding-left: 48px;
}

.form-input::placeholder {
    color: #999;
}

.login-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 195, 74, 0.3);
    background: linear-gradient(135deg, #689f38 0%, #558b2f 100%);
}

.login-button:active {
    transform: translateY(0);
}

.error-icon {
    font-size: 18px;
}

.login-footer {
    text-align: center;
    color: #666;
    font-size: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.company-info {
    background: #f8f9fa;
    color: #424242;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 12px;
    margin-top: 20px;
    border-left: 4px solid #8bc34a;
    text-align: center;
}

.demo-credentials {
    background: #fff3e0;
    color: #e65100;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #ff9800;
}

.demo-credentials strong {
    display: block;
    margin-bottom: 5px;
}

/* Loading Animation */
.loading {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-button.loading .loading {
    display: inline-block;
}

.login-button.loading {
    pointer-events: none;
    opacity: 0.8;
}

/* Grüne Akzente */
.accent-green {
    color: #8bc34a;
}

.bg-light-green {
    background-color: #f1f8e9;
}

/* ===== PRINT STYLES ===== */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
    
    @page {
        margin: 15mm 10mm 15mm 10mm;
        size: A4;
    }
    
    body {
        margin: 0 !important;
        padding: 0 !important;
        font-size: 11px !important;
        line-height: 1.3 !important;
        background: white !important;
    }
    
    .print-container {
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        background: white !important;
        max-width: none !important;
        width: 100% !important;
    }
    
    .no-print {
        display: none !important;
    }
    
    .page-break {
        page-break-before: always;
    }
    
    table {
        page-break-inside: avoid;
    }
    
    tr {
        page-break-inside: avoid;
        page-break-after: auto;
    }
    
    .print-header {
        margin-bottom: 15px !important;
        padding-bottom: 10px !important;
    }
    
    .company-name {
        font-size: 16px !important;
        margin-bottom: 3px !important;
    }
    
    .document-title {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }
    
    .artikel-table th {
        padding: 6px 4px !important;
        font-size: 10px !important;
    }
    
    .artikel-table td {
        padding: 6px 4px !important;
        font-size: 10px !important;
    }
    
    .print-footer {
        margin-top: 20px !important;
        font-size: 9px !important;
    }
}

/* Print-Container (Screen) */
.print-container {
    max-width: 210mm;
    margin: 0 auto;
    background: white;
    padding: 20mm;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.print-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #8bc34a;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    color: #8bc34a;
    margin-bottom: 5px;
}

.document-title {
    font-size: 18px;
    color: #424242;
    margin-bottom: 20px;
}

.artikel-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.artikel-table th {
    background: #8bc34a;
    color: white;
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    border: 1px solid #689f38;
}

.artikel-table td {
    padding: 10px 8px;
    border: 1px solid #e0e0e0;
    font-size: 11px;
    vertical-align: top;
}

.artikel-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.artikel-table tbody tr:hover {
    background: #e8f5e8;
}

.print-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    font-size: 11px;
    color: #666;
}

.footer-section {
    text-align: center;
}

.signature-line {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 5px;
    font-weight: 600;
}

.print-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .header {
        padding: 15px 10px;
        overflow: hidden;
    }
    .header h2 {
        font-size: 20px;
        margin-right: 60px;
    }
    .menu-toggle { display: block; }
    .menubar {
        display: none;
        flex-direction: column;
        width: calc(100% - 20px);
        margin: 15px 10px 0 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 5px;
        box-sizing: border-box;
        gap: 2px;
    }
    .menubar.active { display: flex; }

    .menu-item {
        width: 100%;
        margin: 0;
    }

    .menu-link {
        width: 100%;
        justify-content: space-between;
        padding: 10px 12px;
        box-sizing: border-box;
        font-size: 13px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.95);
        margin: 0;
        padding: 0;
        border-radius: 6px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .menu-item.active .dropdown-menu {
        display: block;
        margin-top: 2px;
        margin-bottom: 2px;
        padding: 5px 0;
    }

    .dropdown-item {
        padding: 8px 15px;
        font-size: 13px;
    }

    .dropdown-item:hover {
        padding-left: 20px;
    }
    
    .form-row { flex-direction: column; }
    .user-item { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 15px; 
    }
    .user-actions { 
        align-self: flex-end; 
        flex-wrap: wrap;
    }
    .admin-section {
        padding: 20px;
        margin: 10px;
    }
    .modal-content {
        margin: 5% auto;
        padding: 20px;
    }
    
    table { font-size: 14px; min-width: 800px; }
    th, td { padding: 8px 6px; }
    .artikel-image, .kein-bild, .no-image { width: 40px; height: 40px; }
    
    /* Für DELETE-Seite: Mobile Anpassung der großen Bilder */
    .artikel-bild img { max-width: 150px; max-height: 150px; }
    
    .action-bar {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .page-content {
        padding: 15px;
    }
    
    .search-form { flex-direction: column; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .result-item, .kommission-item, .artikel-item { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 15px;
    }
    .result-actions, .kommission-actions, .artikel-actions { 
        align-self: flex-end; 
    }
    
    .form-container { 
        padding: 20px; 
        margin: 10px;
    }
    
    .btn {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
    
    .current-image img { max-width: 150px; max-height: 150px; }
    
    .delete-container .artikel-details { 
        grid-template-columns: 1fr; 
    }
    
    .delete-container {
        margin: 10px;
        padding: 20px;
    }
    
    .form-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .bestand-info {
        align-self: flex-end;
        min-width: 100px;
    }
    .status-overview { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 10px;
    }
    .status-card {
        padding: 15px;
    }
    .status-number {
        font-size: 24px;
    }
    
    .kommission-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .print-footer {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .print-controls {
        position: relative;
        margin-bottom: 20px;
        top: auto;
        right: auto;
    }
    
    .login-container {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .login-title {
        font-size: 20px;
    }
    
    .login-body {
        padding: 10px;
    }
    
    .logo-image {
        max-width: 250px;
        max-height: 60px;
    }
}