/* --- SLS General Styles --- */
.sls-button {
    background-color: #337ab7;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}
.sls-button:hover {
    background-color: #286090;
    color: white;
}
.sls-button:disabled {
    background-color: #555;
    cursor: not-allowed;
}

/* Event List */
.sls-event-list .sls-event-card {
    background-color: #222;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border-left: 5px solid #337ab7;
}

/* Single Event / Schichtplan */
.sls-schicht-plan {
    margin-top: 30px;
}
.sls-bereich-gruppe {
    margin-bottom: 30px;
}
.sls-schicht-table {
    width: 100%;
    border-collapse: collapse;
}
.sls-schicht-table th, .sls-schicht-table td {
    padding: 10px;
    border: 1px solid #444;
    text-align: left;
}
.sls-schicht-table th {
    background-color: #333;
}
.sls-schicht-table tr:nth-child(even) {
    background-color: #2a2a2a;
}
.sls-schicht-row.sls-user-is-assigned {
    background-color: #3a4a3a;
    font-weight: bold;
}
.sls-toggle-desc {
    color: #337ab7;
    cursor: pointer;
    font-size: 0.9em;
}
.sls-schicht-beschreibung {
    display: none;
}
.sls-schicht-beschreibung td {
    background-color: #1c1c1c;
    padding: 15px;
}
.sls-bereich-beschreibung {
    background-color: #252525;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    border-left: 3px solid #555;
}

/* Profile Edit Form */
.sls-profile-form-container {
    background-color: #222;
    padding: 20px;
    border-radius: 5px;
    max-width: 700px;
}
.sls-profile-form-container label {
    display: block;
    margin-bottom: 5px;
}
.sls-profile-form-container input[type="date"],
.sls-profile-form-container input[type="text"],
.sls-profile-form-container input[type="email"],
.sls-profile-form-container select {
    width: 100%;
    padding: 8px;
    background-color: #333;
    border: 1px solid #555;
    color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
}
.sls-profile-form-container input[readonly] {
    background-color: #2a2a2a;
    cursor: not-allowed;
}
.sls-profile-form-container p {
    margin-bottom: 15px;
}
.sls-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.sls-form-half {
    flex: 1;
    min-width: 250px;
}
.sls-form-result {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}
.sls-form-result.success {
    display: block;
    background-color: #28a745;
    color: white;
}
.sls-form-result.error {
    display: block;
    background-color: #dc3545;
    color: white;
}
.sls-form-result a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

/* --- Notice Boxes --- */
.sls-notice {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    border-left-width: 5px;
    border-left-style: solid;
}
.sls-notice h4 {
    margin-top: 0;
    color: #fff;
}
.sls-notice-warning {
    background-color: #332d24;
    border-color: #f0ad4e;
    color: #f0ad4e;
}
.sls-notice-warning h4 { color: #f0ad4e; }
.sls-notice-warning a.sls-button {
    margin-top: 10px;
    background-color: #f0ad4e;
    color: #111;
}
.sls-notice-warning a.sls-button:hover {
    background-color: #eea236;
}
.sls-notice-info {
    background-color: #242c33;
    border-color: #337ab7;
    color: #fff;
}
.sls-notice-info a.sls-button,
.sls-notice-info .sls-button {
    margin-top: 10px;
}
.sls-notice-success {
    background-color: #243326;
    border-color: #5cb85c;
    color: #fff;
}

