/**
 * Public Frontend Styles
 * Dealer Login System
 * @author Sascha Marc Rahn
 */

/* Reset */
.dls-login-wrapper,
.dls-registration-wrapper,
.dls-dealer-dashboard,
.dls-vehicle-create-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #1d2327;
    line-height: 1.6;
}

/* Login Side */
.dls-login-wrapper {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
}

.dls-login-box {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.dls-login-box h2 {
    margin: 0 0 25px 0;
    text-align: center;
    color: #1d2327;
    font-size: 24px;
}

.dls-login-box form {
    margin-bottom: 20px;
}

.dls-login-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #1d2327;
}

.dls-login-box input[type="text"],
.dls-login-box input[type="password"],
.dls-login-box input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.dls-login-box input[type="text"]:focus,
.dls-login-box input[type="password"]:focus,
.dls-login-box input[type="email"]:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 1px #2271b1;
}

.dls-login-box input[type="checkbox"] {
    margin-right: 5px;
}

.dls-login-box input[type="submit"],
.dls-login-box button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #2271b1;
    color: #bb032b;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.dls-login-box input[type="submit"]:hover,
.dls-login-box button[type="submit"]:hover {
    background: #135e96;
}

.dls-login-links {
    text-align: center;
    margin-top: 20px;
}

.dls-login-links p {
    margin: 8px 0;
}

.dls-login-links a {
    color: #2271b1;
    text-decoration: none;
}

.dls-login-links a:hover {
    text-decoration: underline;
}

/* Registrering */
.dls-registration-wrapper,
.dls-vehicle-create-wrapper {
    max-width: 700px;
    margin: 50px auto;
    padding: 20px;
}

.dls-registration-box,
.dls-vehicle-create-wrapper {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.dls-registration-box h2,
.dls-vehicle-create-wrapper h2 {
    margin: 0 0 30px 0;
    color: #1d2327;
    font-size: 28px;
}

.dls-registration-box h3,
.dls-vehicle-create-wrapper h3 {
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #dcdcde;
    color: #1d2327;
    font-size: 20px;
}

.dls-registration-form .dls-form-group,
.dls-form .dls-form-group {
    margin-bottom: 20px;
}

.dls-registration-form label,
.dls-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #1d2327;
}

.dls-registration-form input[type="text"],
.dls-registration-form input[type="email"],
.dls-registration-form input[type="password"],
.dls-registration-form input[type="tel"],
.dls-registration-form textarea,
.dls-registration-form select,
.dls-form input[type="text"],
.dls-form input[type="email"],
.dls-form input[type="password"],
.dls-form input[type="tel"],
.dls-form textarea,
.dls-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    font-family: inherit;
}

.dls-registration-form input:focus,
.dls-registration-form textarea:focus,
.dls-registration-form select:focus,
.dls-form input:focus,
.dls-form textarea:focus,
.dls-form select:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 1px #2271b1;
}

.dls-registration-form textarea,
.dls-form textarea {
    resize: vertical;
    min-height: 100px;
}

.dls-registration-form small,
.dls-form small {
    display: block;
    margin-top: 5px;
    color: #646970;
    font-size: 13px;
}

.dls-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dls-registration-form input[type="checkbox"],
.dls-form input[type="checkbox"] {
    margin-right: 8px;
}

.dls-registration-form .dls-button,
.dls-form .dls-button {
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.dls-form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #dcdcde;
}

.dls-form-footer a {
    color: #2271b1;
    text-decoration: none;
}

.dls-form-footer a:hover {
    text-decoration: underline;
}

/* Dashboard */
.dls-dealer-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.dls-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #dcdcde;
}

.dls-dashboard-header h2 {
    margin: 0;
    color: #1d2327;
    font-size: 28px;
}

.dls-dashboard-actions .dls-button {
    padding: 10px 20px;
    background: #fff;
    color: #2271b1;
    border: 1px solid #2271b1;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.dls-dashboard-actions .dls-button:hover {
    background: #2271b1;
    color: #fff;
}

/* Dashboard Stats */
.dls-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.dls-stat-card {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.dls-stat-icon {
    font-size: 48px;
    line-height: 1;
}

.dls-stat-content h3 {
    margin: 0 0 5px 0;
    font-size: 36px;
    font-weight: 600;
    color: #1d2327;
}

.dls-stat-content p {
    margin: 0;
    color: #646970;
    font-size: 14px;
}

/* Dashboard Content */
.dls-dashboard-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.dls-dashboard-section {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.dls-dashboard-section h3 {
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #dcdcde;
    color: #1d2327;
    font-size: 20px;
}

/* Quick Links */
.dls-quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dls-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f6f7f7;
    border: 1px solid #dcdcde;
    border-radius: 6px;
    text-decoration: none;
    color: #1d2327;
    transition: all 0.2s;
}

.dls-quick-link:hover {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dls-quick-link .dashicon {
    font-size: 32px;
}

.dls-quick-link span:last-child {
    font-weight: 500;
    text-align: center;
}

/* Activity */
.dls-activity-list {
    max-height: 400px;
    overflow-y: auto;
}

.dls-activity-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f0f0f1;
}

.dls-activity-item:last-child {
    border-bottom: none;
}

.dls-activity-icon {
    font-size: 24px;
    line-height: 1;
}

.dls-activity-content {
    flex: 1;
}

.dls-activity-content strong {
    color: #1d2327;
}

.dls-activity-content small {
    color: #646970;
    font-size: 12px;
}

/* Warranty Status */
.dls-warranty-active {
    display: inline-block;
    padding: 4px 10px;
    background: #d1fae5;
    color: #065f46;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
}

.dls-warranty-warning {
    display: inline-block;
    padding: 4px 10px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
}

.dls-warranty-expired {
    display: inline-block;
    padding: 4px 10px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
}

/* Warranty Warnings */
.dls-warranty-warnings {
    max-height: 400px;
    overflow-y: auto;
}

.dls-warning-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    margin-bottom: 10px;
}

.dls-warning-item:last-child {
    margin-bottom: 0;
}

.dls-warning-icon {
    font-size: 24px;
    line-height: 1;
}

.dls-warning-content strong {
    color: #1d2327;
}

.dls-warning-content small {
    color: #646970;
    font-size: 12px;
}

/* Notices */
.dls-notice {
    padding: 15px 20px;
    border-left: 4px solid;
    border-radius: 4px;
    margin-bottom: 20px;
}

.dls-notice-success {
    background: #d1fae5;
    border-color: #10b981;
    color: #065f46;
}

.dls-notice-error {
    background: #fee2e2;
    border-color: #ef4444;
    color: #991b1b;
}

.dls-notice-warning {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
}

.dls-notice-info {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #1e40af;
}

/* Buttons */
.dls-button {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.dls-button-primary {
    background: #2271b1;
    color: #bb032b;
}

.dls-button-primary:hover {
    background: #135e96;
}

.dls-button-secondary {
    background: #fff;
    color: #2271b1;
    border: 1px solid #2271b1;
}

.dls-button-secondary:hover {
    background: #2271b1;
    color: #fff;
}

.dls-button-danger {
    background: #dc2626;
    color: #fff;
}

.dls-button-danger:hover {
    background: #991b1b;
}

/* jQuery UI Datepicker Customization */
.ui-datepicker {
    font-family: inherit !important;
    font-size: 14px !important;
}

.ui-datepicker-trigger {
    margin-left: 8px;
    cursor: pointer;
    vertical-align: middle;
    border: none;
    background: transparent;
}

/* Loading State */
input.loading,
select.loading {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIxMCIgY3k9IjEwIiByPSI4IiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjcxYjEiIHN0cm9rZS13aWR0aD0iMiI+PGFuaW1hdGVUcmFuc2Zvcm0gYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIiB0eXBlPSJyb3RhdGUiIGZyb209IjAgMTAgMTAiIHRvPSIzNjAgMTAgMTAiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIi8+PC9jaXJjbGU+PC9zdmc+');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px 20px;
    padding-right: 40px;
}

/* Field Error */
.dls-field-error {
    display: block;
    margin-top: 5px;
    color: #dc2626;
    font-size: 13px;
}

input.dls-invalid {
    border-color: #dc2626 !important;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .dls-login-wrapper,
    .dls-registration-wrapper,
    .dls-vehicle-create-wrapper {
        padding: 10px;
    }
    
    .dls-login-box,
    .dls-registration-box,
    .dls-vehicle-create-wrapper {
        padding: 20px;
    }
    
    .dls-form-row {
        grid-template-columns: 1fr;
    }
    
    .dls-dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .dls-dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .dls-quick-links {
        grid-template-columns: 1fr;
    }
    
    .dls-dashboard-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
/**
 * TILFØJ DETTE TIL BUNDEN AF public-style.css
 * Styles til køretøjsliste, tabel og søgning
 */

/* Søgeformular */
.dls-search-form {
    margin-bottom: 25px;
    padding: 20px;
    background: #f6f7f7;
    border-radius: 6px;
}

.dls-search-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    font-size: 16px;
}

.dls-search-results-info {
    margin-bottom: 20px;
    padding: 12px;
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    border-radius: 4px;
    color: #1e40af;
}

/* Tabel styling */
.dls-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.dls-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.dls-table thead {
    background: #f6f7f7;
}

.dls-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #1d2327;
    border-bottom: 2px solid #dcdcde;
    white-space: nowrap;
}

.dls-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f1;
}

.dls-table tbody tr:hover {
    background: #f9fafb;
}

.dls-table tbody tr:last-child td {
    border-bottom: none;
}

.dls-table-small {
    font-size: 13px;
    color: #646970;
    font-family: monospace;
}

.dls-table-actions {
    white-space: nowrap;
}

.dls-button-small {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.dls-button-small.dls-button-primary {
    background: #2271b1;
    color: #fff;
}

.dls-button-small.dls-button-primary:hover {
    background: #135e96;
}

.dls-button-small.dls-button-secondary {
    background: #fff;
    color: #2271b1;
    border: 1px solid #2271b1;
}

.dls-button-small.dls-button-secondary:hover {
    background: #2271b1;
    color: #fff;
}

/* Empty state */
.dls-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.dls-empty-state-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.dls-empty-state h3 {
    margin: 0 0 10px 0;
    color: #1d2327;
    font-size: 24px;
}

.dls-empty-state p {
    margin: 0 0 25px 0;
    color: #646970;
    font-size: 16px;
}

/* Responsive tabel */
@media screen and (max-width: 768px) {
    .dls-table {
        font-size: 14px;
    }
    
    .dls-table th,
    .dls-table td {
        padding: 8px 10px;
    }
    
    .dls-table th {
        font-size: 12px;
    }
    
    .dls-dashboard-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .dls-dashboard-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .dls-dashboard-actions .dls-button {
        width: 100%;
        text-align: center;
    }
}
/**
 * TILFØJ DETTE TIL BUNDEN AF public-style.css
 * Køretøjsinformation boks styling
 */

/* Køretøjsinfo boks */
.dls-vehicle-info-box {
    background: #f0f6fc;
    border: 2px solid #2271b1;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.dls-vehicle-info-box h3 {
    margin: 0 0 20px 0;
    color: #1d2327;
    font-size: 18px;
}

.dls-vehicle-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.dls-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dls-info-label {
    font-size: 13px;
    color: #646970;
    font-weight: 500;
}

.dls-info-value {
    font-size: 15px;
    color: #1d2327;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .dls-vehicle-info-grid {
        grid-template-columns: 1fr;
    }
}
/**
 * TILFØJ DETTE TIL BUNDEN AF public-style.css
 * Filter bar og service badges
 */

/* Filter bar */
.dls-filter-bar {
    margin-bottom: 25px;
    padding: 20px;
    background: #f6f7f7;
    border-radius: 6px;
}

.dls-filter-bar form {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.dls-filter-bar label {
    font-weight: 500;
    color: #1d2327;
}

.dls-filter-bar select {
    padding: 10px 12px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    font-size: 15px;
    min-width: 200px;
}

/* Service type badge */
.dls-service-type-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #e0f2fe;
    color: #075985;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

/* Tabel summary */
.dls-table-summary {
    margin-top: 20px;
    padding: 15px;
    background: #f6f7f7;
    border-radius: 4px;
    text-align: right;
}

.dls-table-summary p {
    margin: 0;
    color: #646970;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .dls-filter-bar form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dls-filter-bar select {
        width: 100%;
    }
}
/**
 * TILFØJ DETTE TIL BUNDEN AF public-style.css
 * Fil preview styling for reklamationer
 */

/* Image preview container */
.dls-image-preview {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    background: #f6f7f7;
    border-radius: 6px;
    min-height: 50px;
}

.dls-image-preview:empty {
    display: none;
}

/* Preview item */
.dls-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 6px;
    max-width: 150px;
}

.dls-preview-item img {
    max-width: 130px;
    max-height: 130px;
    object-fit: cover;
    border-radius: 4px;
}

.dls-preview-pdf {
    padding: 20px;
}

.dls-preview-icon {
    font-size: 48px;
}

.dls-preview-filename {
    font-size: 12px;
    color: #646970;
    text-align: center;
    word-break: break-word;
    max-width: 130px;
}

.dls-preview-info {
    width: 100%;
    margin: 0 !important;
    padding: 10px;
    background: #d1fae5;
    color: #065f46;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

/* File input styling */
input[type="file"] {
    padding: 10px;
    border: 2px dashed #dcdcde;
    border-radius: 6px;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.2s;
}

input[type="file"]:hover {
    border-color: #2271b1;
    background: #f0f6fc;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .dls-image-preview {
        justify-content: center;
    }
}
/**
 * TILFØJ DETTE TIL BUNDEN AF public-style.css
 * Reklamations kort styling
 */

/* Complaints grid */
.dls-complaints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Complaint card */
.dls-complaint-card {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.dls-complaint-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dls-complaint-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f6f7f7;
    border-bottom: 1px solid #dcdcde;
}

.dls-complaint-id {
    font-weight: 600;
    color: #646970;
    font-size: 14px;
}

/* Status badges */
.dls-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
}

.dls-status-pending {
    background: #fef3c7;
    color: #92400e;
}

.dls-status-processing {
    background: #dbeafe;
    color: #1e40af;
}

.dls-status-resolved {
    background: #d1fae5;
    color: #065f46;
}

/* Complaint body */
.dls-complaint-body {
    padding: 20px;
}

.dls-complaint-body h4 {
    margin: 0 0 15px 0;
    color: #1d2327;
    font-size: 18px;
}

.dls-complaint-info {
    margin-bottom: 15px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 6px;
}

.dls-info-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 14px;
}

.dls-info-row:not(:last-child) {
    border-bottom: 1px solid #f0f0f1;
}

.dls-info-label {
    color: #646970;
    font-weight: 500;
}

.dls-info-value {
    color: #1d2327;
}

.dls-complaint-description {
    margin-bottom: 15px;
}

.dls-complaint-description strong {
    display: block;
    margin-bottom: 8px;
    color: #1d2327;
    font-size: 14px;
}

.dls-complaint-description p {
    margin: 0;
    color: #646970;
    font-size: 14px;
    line-height: 1.6;
}

/* Images */
.dls-complaint-images {
    margin-bottom: 15px;
}

.dls-complaint-images strong {
    display: block;
    margin-bottom: 8px;
    color: #1d2327;
    font-size: 14px;
}

.dls-image-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dls-thumbnail {
    display: block;
    width: 60px;
    height: 60px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s;
}

.dls-thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.dls-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dls-file-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #f6f7f7;
    font-size: 24px;
}

/* Admin notes */
.dls-admin-notes {
    padding: 15px;
    background: #e0f2fe;
    border-left: 4px solid #2271b1;
    border-radius: 4px;
}

.dls-admin-notes strong {
    display: block;
    margin-bottom: 8px;
    color: #1d2327;
    font-size: 14px;
}

.dls-admin-notes p {
    margin: 0;
    color: #1e40af;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .dls-complaints-grid {
        grid-template-columns: 1fr;
    }
}