/* public/assets/css/styles.css */
/* Grundlegende Stile für die Anwendung */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header und Navigation */
.main-header {
    background-color: #2c3e50;
    color: #fff;
    padding: 1rem 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 1rem;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem;
}

.main-nav a:hover {
    color: #ecf0f1;
    text-decoration: underline;
}

/* Login-Formular */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-form {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.login-form h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Formulare */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.form-groups input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    width: auto;;
} 

.btn, a.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
    line-height:18px;
}

.btn-primary {
    background-color: #3498db;
    color: #fff;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #fff;
}

.btn-danger {
    background-color: #e74c3c;
    color: #fff;
}

.btn-success, .btn-info {
    background-color: #33952e;
    color: #fff;
}

.btn-warning {
    background-color: #ff9100;
    color: #fff;
}

/* Tabellen */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

table th, table td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #f2f2f2;
}

/* Nachrichten */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 3px;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 3px;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 1rem 0;
    margin-top: 2rem;
    text-align: center;
}

/* Dashboard Styles */
.dashboard-container {
    padding: 2rem 0;
    min-height: calc(100vh - 160px);
}
.password-container {
    padding: 2rem 0;
    min-height: calc(100vh - 160px);
}

.dashboard-header, .password-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.dashboard-date {
    color: #666;
    font-size: 0.9rem;
}

/* Stats für Administratoren */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.stat-icon {
    font-size: 2rem;
    color: #3498db;
    margin-right: 1rem;
}


.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.admin-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-action {
    display: flex;
    align-items: center;
    color: #3498db;
    text-decoration: none;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.quick-action:hover {
    background-color: #f8f9fa;
    border-radius: 3px;
}

.quick-action i {
    margin-right: 0.5rem;
}

/* Dashboard Hauptbereich */
/* .dashboard-main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1.5rem;
} */

/* Sidebar */
.sidebar {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.sidebar-section {
    margin-bottom: 1.5rem;
}

.sidebar-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.group-list {
    list-style: none;
}

.group-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.group-list li i {
    margin-right: 0.5rem;
    color: #666;
}

/* Web-App-Grid */
.webapp-grid {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.webapp-grid h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.no-webapps {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.no-webapps i {
    font-size: 3rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

/* Durch diesen Code ersetzen */
.webapp-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.webapp-card {
    flex: 0 0 auto;  /* Nicht wachsen, nicht schrumpfen, Größe aus Inhalt bestimmen */
    width: 250px;     /* Feste Breite für jede Karte */
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Responsives Verhalten */
@media (max-width: 768px) {
    .webapp-cards {
        justify-content: center; /* Zentrieren auf kleinen Bildschirmen */
    }
    
    .webapp-card {
        width: 100%;      /* Volle Breite auf kleinen Bildschirmen */
        max-width: 300px; /* Maximale Breite begrenzen */
    }
}

.webapp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.webapp-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
    text-align: center;
}

.webapp-info {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.webapp-info h4 {
    margin-bottom: 0.5rem;
}

.webapp-info p {
    color: #666;
    font-size: 0.9rem;
}

.webapp-actions {
    text-align: center;
}

/* Navigation und Dropdown */
.main-nav .active {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.main-nav i {
    margin-right: 0.3rem;
}

.admin-link {
    background-color: #e74c3c;
    border-radius: 3px;
}

.user-menu {
    position: relative;
}

.dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    width: 200px;
    z-index: 10;
}

.dropdown-menu.show {
    display: block !important;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1rem;
    color: #333;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #333;
}

/* Responsives Design */
@media (max-width: 768px) {
    .dashboard-main {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .webapp-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* Admin-Bereich Styles */
.admin-container {
    padding: 2rem 0;
    min-height: calc(100vh - 160px);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

/* Admin-Navigation */
.admin-link {
    background-color: #e74c3c;
    border-radius: 3px;
}

/* Tabellen */
.admin-list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.table th, .table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.table tr:hover {
    background-color: #f8f9fa;
}

.actions {
    white-space: nowrap;
    text-align: right;
}

/* .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
} */

.no-records {
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Formulare */
.admin-form {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-groups label {
    display: block;
    margin-bottom: 0;
    font-weight: bold;
    width: auto;
} 

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.form-group textarea {
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #666;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 0.5rem;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.checkbox-list {
    margin-top: 0.5rem;
}

.checkbox-item {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.checkbox-item input {
    margin-right: 0.5rem;
}

.form-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 1.5rem;
}

.form-actions .btn {
    margin-right: 0.5rem;
}

/* Inline-Formulare */
.form-inline {
    display: flex;
    align-items: center;
}

.form-inline .form-group {
    margin-right: 0.5rem;
    margin-bottom: 0;
}

.form-inline .form-control {
    width: auto;
}

/* Benachrichtigungen */
.message-container {
    margin-bottom: 1.5rem;
}

.message {
    padding: 1rem;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
}

.message.info {
    background-color: #cce5ff;
    color: #004085;
}

.message.warning {
    background-color: #fff3cd;
    color: #856404;
}

/* Admin-Dashboard */
.admin-dashboard {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.stat-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
}

.stat-icon {
    font-size: 3rem;
    color: #3498db;
    margin-right: 1rem;
}

.stat-info {
    flex-grow: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.stat-link {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #666;
}

.stat-link:hover {
    color: #333;
}

.admin-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.admin-panel {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.panel-header {
    padding: 1rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.panel-link {
    font-size: 0.9rem;
    color: #3498db;
}

.panel-content {
    padding: 1rem;
}

.quick-actions {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.quick-actions h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Gruppen-Benutzer-Verwaltung */
.admin-group-users {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.group-info {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.group-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.group-section {
    margin-bottom: 1.5rem;
}

.group-section h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-header h2 {
        margin-bottom: 1rem;
    }
    
    .stats-overview {
        grid-template-columns: 1fr;
    }
    
    .admin-panels {
        grid-template-columns: 1fr;
    }
    
    .table {
        display: block;
        overflow-x: auto;
    }
}

/* Web-App-Styles */
.webapp-container {
    padding: 2rem 0;
    min-height: calc(100vh - 120px);
}

.webapp-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.webapp-header h2 {
    margin-right: auto;
    margin-bottom: 0.5rem;
}

.webapp-description {
    flex-basis: 100%;
    /* margin-bottom: 1rem; */
    color: #666;
}

.webapp-content {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

/* Fehlermeldungen */
.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
}

.error-content {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    max-width: 500px;
}

.error-icon {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.error-content h1 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.error-content p {
    margin-bottom: 1rem;
    color: #666;
}

.error-content .btn {
    margin-top: 1rem;
}

/* Anklickbare stat-card */
.stat-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 1rem;
}

.stat-card-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-card-link:hover .stat-card {
    border-color: #3498db;
}

.stat-card-link:hover .stat-link {
    color: #3498db;
}

/* Anpassungen der bestehenden stat-card */
.stat-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid transparent;
    transition: border-color 0.2s;
    cursor: pointer;
}

.stat-link {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #666;
    transition: color 0.2s;
}


/* Profil-Seite Styles */
.profile-container {
    padding: 2rem 0;
    min-height: calc(100vh - 120px);
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
}

.profile-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.profile-info {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.profile-avatar {
    font-size: 4rem;
    color: #3498db;
    margin-right: 1.5rem;
}

.profile-details h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.profile-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.profile-groups h4 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.profile-groups .group-list {
    list-style: none;
    padding: 0;
}

.profile-groups .group-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.profile-groups .group-list li i {
    margin-right: 0.5rem;
    color: #666;
}

.profile-form {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.profile-form h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.password-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.password-section h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.password-section p {
    margin-bottom: 1rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .profile-card {
        margin-bottom: 1.5rem;
    }
}

/* Sicherheitsbereich Styles */
.security-dashboard {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.status-error {
    color: #e74c3c;
}

.security-panels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.security-panel {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.security-actions {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.security-actions h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.status {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
}

.status.success {
    background-color: rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.status.warning {
    background-color: rgba(241, 196, 15, 0.2);
    color: #f39c12;
}

.status.error {
    background-color: rgba(231, 76, 60, 0.2);
    color: #c0392b;
}

/* Log-Tabellen */
.log-status-success {
    background-color: rgba(46, 204, 113, 0.05);
}

.log-status-warning {
    background-color: rgba(241, 196, 15, 0.05);
}

.log-status-error {
    background-color: rgba(231, 76, 60, 0.05);
}

/* Suchergebnis-Filter */
.search-box {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.search-buttons {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

/* Logs-Tabelle */
.logs-table {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

/* Paginierung */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    margin: 0 0.25rem;
}

.pagination a {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 3px;
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.pagination li.active a {
    background-color: #3498db;
    color: #fff;
}

.pagination a:hover {
    background-color: #e9ecef;
}

/* Modal-Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fff;
    margin: 50px auto; /* Reduzierter oberer Rand */
    padding: 0;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 600px;
    position: relative; /* Wichtig für die korrekte Positionierung */
}

.modal-header {
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h4 {
    margin: 0;
}

.close {
    color: #666;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
}

.modal-body {
    padding: 1.5rem;
}

.alert {
    padding: 1rem;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .col-md-3, .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .search-buttons {
        margin-top: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .table {
        display: block;
        overflow-x: auto;
    }
}

/* Statusanzeige für Benutzer */
.status-active {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    background-color: rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.status-locked {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    background-color: rgba(231, 76, 60, 0.2);
    color: #c0392b;
}