62 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
:root {
 | 
						|
    --bs-body-bg: #ffffff;
 | 
						|
    --bs-body-color: #212529;
 | 
						|
}
 | 
						|
[data-bs-theme="dark"] {
 | 
						|
    --bs-body-bg: #1a1a1a;
 | 
						|
    --bs-body-color: #f8f9fa;
 | 
						|
    --bs-border-color: #495057;
 | 
						|
}
 | 
						|
[data-bs-theme="dark"] .table {
 | 
						|
    --bs-table-bg: #212529;
 | 
						|
    --bs-table-color: #fff;
 | 
						|
    --bs-table-border-color: #495057;
 | 
						|
}
 | 
						|
[data-bs-theme="dark"] .card {
 | 
						|
    background-color: #2b3035;
 | 
						|
    border-color: var(--bs-border-color);
 | 
						|
}
 | 
						|
[data-bs-theme="dark"] .navbar {
 | 
						|
    background-color: #212529 !important;
 | 
						|
}
 | 
						|
body {
 | 
						|
    background-color: var(--bs-body-bg);
 | 
						|
    color: var(--bs-body-color);
 | 
						|
    transition: all 0.3s ease;
 | 
						|
}
 | 
						|
.font-monospace {
 | 
						|
    font-family: Monaco, Consolas, "Courier New", monospace;
 | 
						|
}
 | 
						|
.badge {
 | 
						|
    font-size: 0.9em;
 | 
						|
    font-weight: 500;
 | 
						|
}
 | 
						|
#expiry-countdown {
 | 
						|
  font-weight: 600;
 | 
						|
  letter-spacing: 0.05em;
 | 
						|
  color: #dc3545;
 | 
						|
  transition: color 0.3s ease;
 | 
						|
}
 | 
						|
 | 
						|
[data-bs-theme="dark"] #expiry-countdown {
 | 
						|
  color: #ff6b6b;
 | 
						|
}
 | 
						|
 | 
						|
/* Progressbar-Animationen */
 | 
						|
#expiry-bar {
 | 
						|
    transition: width 1s linear, background-color 0.5s ease;
 | 
						|
}
 | 
						|
 | 
						|
.bg-success { background-color: #198754 !important; }
 | 
						|
.bg-warning { background-color: #ffc107 !important; }
 | 
						|
.bg-danger { background-color: #dc3545 !important; }
 | 
						|
 | 
						|
.progress-bar {
 | 
						|
  transition: width 1s linear, background-color 0.3s ease;
 | 
						|
}
 | 
						|
.table-pdf {
 | 
						|
    font-size: 0.8em;
 | 
						|
}
 | 
						|
.table-pdf td, .table-pdf th {
 | 
						|
    padding: 4px 8px;
 | 
						|
}
 |