/**
 * Frontend Styles
 */

/* Detailer Navigation */
.dx-detailer-nav {
    max-width: 1200px;
    width: 100%;
    margin: 20px auto 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px 8px 0 0;
    border-bottom: none;
    padding: 0;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.dx-detailer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.dx-detailer-nav li {
    margin: 0;
    padding: 0;
    border-right: 1px solid #f0f0f0;
}

.dx-detailer-nav li:last-child {
    border-right: none;
    margin-left: auto;
}

.dx-detailer-nav li.dx-nav-logout {
    margin-left: auto;
    border-left: 2px solid #f0f0f0;
}

.dx-detailer-nav a {
    display: block;
    padding: 18px 24px;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.dx-detailer-nav a:hover {
    background: linear-gradient(to bottom, #f8f9fa, #fff);
    color: #2271b1;
    transform: translateY(-1px);
}

.dx-detailer-nav a.active {
    color: #2271b1;
    border-bottom-color: #2271b1;
    background: linear-gradient(to bottom, #f0f7ff, #fff);
    font-weight: 700;
}

.dx-detailer-nav li.dx-nav-logout a {
    color: #d63638;
}

.dx-detailer-nav li.dx-nav-logout a:hover {
    background: linear-gradient(to bottom, #fff5f5, #fff);
    color: #b32d2e;
}

.dx-coating-submit-form,
.dx-detailer-dashboard,
.dx-detailer-profile {
    max-width: 900px;
    width: 100%;
    margin: 0 auto 30px;
    padding: 50px 60px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dx-code-lookup {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 30px;
    padding: 50px 60px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dx-login-form {
    max-width: 500px;
    width: 100%;
    margin: 20px auto;
    padding: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.dx-my-applications {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 20px;
    padding: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dx-form-group {
    margin-bottom: 20px;
}

.dx-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.dx-form-group .required {
    color: #d63638;
}

.dx-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: #fff;
}

.dx-form-control:focus {
    border-color: #EA0A0B;
    outline: none;
    box-shadow: 0 0 0 3px rgba(234, 10, 11, 0.1);
    background: #fafbfc;
}

.dx-form-control:hover {
    border-color: #c3c4c7;
}

.dx-form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.dx-button {
    display: inline-block;
    padding: 12px 24px;
    background: #f0f0f1;
    border: 1px solid #dcdcde;
    border-radius: 6px;
    color: #2c3338;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.dx-button:hover {
    background: #e8e8e8;
    border-color: #c3c4c7;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dx-button-primary {
    background: linear-gradient(to bottom, #EA0A0B, #C00809);
    border-color: #EA0A0B;
    color: #fff;
    box-shadow: 0 2px 4px rgba(234, 10, 11, 0.3);
}

.dx-button-primary:hover {
    background: linear-gradient(to bottom, #C00809, #A00708);
    border-color: #C00809;
    color: #fff;
    box-shadow: 0 4px 8px rgba(234, 10, 11, 0.4);
    transform: translateY(-2px);
}

.dx-button-link {
    background: none;
    border: none;
    color: #2271b1;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.dx-button-link:hover {
    color: #135e96;
}

/* Button groups */
.dx-detailer-dashboard p,
.dx-my-applications > p {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.dx-detailer-dashboard {
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100px);
}

.dx-detailer-dashboard h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 28px;
    color: #000;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.dx-form-group:last-of-type {
    margin-bottom: 0;
}

/* Login form specific styles */
.dx-login-form h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #000;
    font-weight: 700;
}

.dx-login-form form#dx-loginform {
    margin-bottom: 20px;
}

.dx-login-form form#dx-loginform p {
    margin-bottom: 20px;
}

.dx-login-form form#dx-loginform label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.dx-login-form form#dx-loginform input[type="text"],
.dx-login-form form#dx-loginform input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.dx-login-form form#dx-loginform input[type="text"]:focus,
.dx-login-form form#dx-loginform input[type="password"]:focus {
    border-color: #EA0A0B;
    outline: none;
    box-shadow: 0 0 0 1px #EA0A0B;
}

.dx-login-form form#dx-loginform input[type="checkbox"] {
    margin-right: 8px;
}

.dx-login-form form#dx-loginform .forgetmenot {
    margin-bottom: 20px;
}

.dx-login-form form#dx-loginform input[type="submit"] {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(to bottom, #EA0A0B, #C00809);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(234, 10, 11, 0.3);
}

.dx-login-form form#dx-loginform input[type="submit"]:hover {
    background: linear-gradient(to bottom, #C00809, #A00708);
    box-shadow: 0 4px 8px rgba(234, 10, 11, 0.4);
    transform: translateY(-1px);
}

.dx-login-actions {
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.dx-button-accredited {
    display: inline-block;
    padding: 12px 30px;
    background: #d63638;
    border: none;
    border-radius: 4px;
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.dx-button-accredited:hover {
    background: #b32d2e;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(214, 54, 56, 0.3);
}

/* Form layout improvements */
.dx-coating-submit-form .dx-form-group {
    max-width: 100%;
}

.dx-coating-submit-form input[type="datetime-local"],
.dx-coating-submit-form select,
.dx-coating-submit-form textarea {
    max-width: 100%;
}

/* Better spacing for forms */
.dx-coating-submit-form h3,
.dx-my-applications h3,
.dx-code-lookup h3,
.dx-detailer-profile h3 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 28px;
    color: #000;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.dx-coating-submit-form {
    background: linear-gradient(to bottom, #fafbfc 0%, #fff 50px);
}

.dx-detailer-dashboard h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 28px;
    color: #000;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Full width option - can be added via custom CSS if needed */
.dx-full-width {
    max-width: 100% !important;
    width: 100% !important;
}

/* Form improvements */
.dx-coating-submit-form .dx-form-group {
    margin-bottom: 25px;
}

.dx-coating-submit-form .dx-form-group:last-of-type {
    margin-top: 30px;
    margin-bottom: 0;
}

.dx-coating-submit-form button[type="submit"] {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    min-width: 200px;
}

.dx-coating-submit-form {
    background: linear-gradient(to bottom, #fafbfc 0%, #fff 50px);
}

.dx-message {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.dx-message.dx-success {
    background: #00a32a;
    color: #fff;
    border-left: 4px solid #00a32a;
}

.dx-message.dx-error {
    background: #fcf0f1;
    color: #8a2424;
    border-left: 4px solid #d63638;
}

.dx-message.dx-info {
    background: #e7f5fe;
    color: #0c5460;
    border-left: 4px solid #2271b1;
}

.dx-message.dx-info p {
    margin: 10px 0;
}

.dx-message.dx-info p:first-child {
    margin-top: 0;
}

.dx-message.dx-info p:last-child {
    margin-bottom: 0;
}

.dx-applications-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 25px;
    table-layout: auto;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.dx-applications-table th,
.dx-applications-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
    word-wrap: break-word;
}

.dx-applications-table thead th {
    background: linear-gradient(to bottom, #2c3e50, #34495e) !important;
    color: #fff !important;
}

.dx-applications-table th {
    background: linear-gradient(to bottom, #2c3e50, #34495e) !important;
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.8px;
    border-bottom: 2px solid #1a252f;
}

.dx-applications-table tbody tr {
    transition: all 0.2s ease;
}

.dx-applications-table tbody tr:hover {
    background: #f8f9fa;
    transform: scale(1.01);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.dx-applications-table tbody tr:last-child td {
    border-bottom: none;
}

.status-submitted {
    color: #d63638;
    font-weight: 600;
}

.status-approved {
    color: #00a32a;
    font-weight: 600;
}

.status-void {
    color: #8c8f94;
    font-weight: 600;
}

.locked {
    margin-left: 5px;
}

.dx-lookup-result {
    margin-top: 30px;
    padding: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.dx-lookup-result h4 {
    margin: 0;
    padding: 20px 25px;
    background: linear-gradient(to bottom, #2c3e50, #34495e);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dx-lookup-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
}

.dx-lookup-table tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.dx-lookup-table tr:last-child {
    border-bottom: none;
}

.dx-lookup-table tr:hover {
    background: #f8f9fa;
}

.dx-lookup-table th {
    width: 35%;
    padding: 18px 25px;
    text-align: left;
    font-weight: 700;
    vertical-align: top;
    color: #555;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8f9fa;
    border-right: 2px solid #e8e8e8;
}

.dx-lookup-table td {
    padding: 18px 25px;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.dx-lookup-table td strong {
    color: #000;
    font-weight: 700;
}

.dx-lookup-table td small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 13px;
    font-style: italic;
}

.dx-lookup-result {
    margin-bottom: 0;
}

.dx-maintenance-guide-link {
    margin-top: 30px;
    padding: 0;
    border-top: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    overflow: hidden;
    position: relative;
}

.dx-maintenance-guide-link::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.dx-maintenance-guide-link p {
    margin: 0;
    padding: 30px 25px;
    display: block;
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    text-align: center !important;
    width: 100%;
    box-sizing: border-box;
}

.dx-maintenance-guide-link p strong {
    display: block;
    margin-bottom: 15px;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    text-align: center !important;
    width: 100%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.dx-maintenance-guide-link .dx-button {
    margin-top: 20px;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    background: #fff;
    color: #667eea !important;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.dx-maintenance-guide-link .dx-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
    color: #764ba2 !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .dx-login-form,
    .dx-coating-submit-form,
    .dx-code-lookup,
    .dx-detailer-dashboard {
        max-width: 100%;
        margin: 20px;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .dx-applications-table {
        font-size: 12px;
    }
    
    .dx-applications-table th,
    .dx-applications-table td {
        padding: 8px 4px;
    }
    
    .dx-login-form {
        max-width: 100%;
        padding: 25px 20px;
        margin: 10px;
    }
    
    .dx-coating-submit-form,
    .dx-my-applications,
    .dx-code-lookup,
    .dx-detailer-dashboard,
    .dx-detailer-profile {
        padding: 20px;
        margin: 10px;
    }
    
    .dx-detailer-profile {
        max-width: 100%;
        padding: 25px 20px;
    }
    
    .dx-profile-table th,
    .dx-profile-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .dx-profile-table th {
        width: 35%;
    }
    
    .dx-detailer-profile .submit {
        margin-top: 30px;
        padding-top: 25px;
    }
    
    .dx-detailer-profile .submit .dx-button {
        min-width: 100%;
        width: 100%;
    }
    
    .dx-detailer-nav {
        margin: 10px auto 0;
    }
    
    .dx-detailer-nav ul {
        flex-direction: column;
    }
    
    .dx-detailer-nav li {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .dx-detailer-nav li:last-child {
        border-bottom: none;
        margin-left: 0;
    }
    
    .dx-detailer-nav li.dx-nav-logout {
        margin-left: 0;
        border-top: 2px solid #e0e0e0;
    }
    
    .dx-detailer-nav a {
        padding: 12px 15px;
    }
}

/* Accredited badge */
.dx-accredited-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.dx-not-accredited-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(149, 165, 166, 0.3);
}

.dx-accredited-badge-admin {
    display: inline-block;
    margin-top: 5px;
    padding: 3px 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
}

/* Profile table styling */
.dx-profile-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 30px 0 40px 0;
    background: #fff;
}

.dx-profile-table th {
    width: 30%;
    padding: 18px 25px;
    text-align: left;
    font-weight: 700;
    color: #333;
    font-size: 15px;
    background: #f8f9fa;
    border-right: 2px solid #e8e8e8;
    vertical-align: middle;
    border-top: 1px solid #e0e0e0;
}

.dx-profile-table th:first-child {
    border-top-left-radius: 8px;
}

.dx-profile-table tr:last-child th {
    border-bottom-left-radius: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.dx-profile-table td {
    padding: 18px 25px;
    color: #333;
    font-size: 15px;
    vertical-align: middle;
    border-top: 1px solid #e0e0e0;
    background: #fff;
}

.dx-profile-table tr:last-child td {
    border-bottom: 1px solid #e0e0e0;
    border-bottom-right-radius: 8px;
}

.dx-profile-table tr:hover th {
    background: #f0f2f5;
}

.dx-profile-table tr:hover td {
    background: #fafbfc;
}

.dx-profile-table input.dx-form-control {
    max-width: 100%;
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: #fff;
}

.dx-profile-table input.dx-form-control:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

.dx-profile-table label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    display: block;
}

.dx-detailer-profile .submit {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.dx-detailer-profile .submit .dx-button {
    min-width: 200px;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dx-detailer-profile .submit .dx-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

/* Refined frontend UI */
.dx-login-form,
.dx-coating-submit-form,
.dx-detailer-dashboard,
.dx-detailer-profile,
.dx-code-lookup,
.dx-my-applications,
.dx-detailer-nav {
    border-color: #e4e7ec;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.dx-coating-submit-form,
.dx-detailer-dashboard,
.dx-detailer-profile,
.dx-code-lookup,
.dx-login-form {
    background: #fff;
}

.dx-detailer-nav {
    overflow: hidden;
}

.dx-detailer-nav a {
    color: #344054;
    border-bottom-width: 2px;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.dx-detailer-nav a:hover {
    background: #f9fafb;
    color: #c00809;
    transform: none;
}

.dx-detailer-nav a.active {
    color: #c00809;
    border-bottom-color: #c00809;
    background: #fff5f5;
}

.dx-login-form h3,
.dx-coating-submit-form h3,
.dx-my-applications h3,
.dx-code-lookup h3,
.dx-detailer-profile h3,
.dx-detailer-dashboard h3 {
    color: #111827;
    font-size: 26px;
    line-height: 1.2;
    border-bottom-color: #eef2f6;
}

.dx-form-group label,
.dx-profile-table label {
    color: #344054;
}

.dx-form-control,
.dx-login-form form#dx-loginform input[type="text"],
.dx-login-form form#dx-loginform input[type="password"],
.dx-profile-table input.dx-form-control {
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    color: #101828;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.dx-form-control:focus,
.dx-login-form form#dx-loginform input[type="text"]:focus,
.dx-login-form form#dx-loginform input[type="password"]:focus,
.dx-profile-table input.dx-form-control:focus {
    border-color: #d63638;
    box-shadow: 0 0 0 3px rgba(214, 54, 56, 0.14);
    background: #fff;
}

.dx-button,
.dx-login-form form#dx-loginform input[type="submit"],
.dx-button-accredited {
    border-radius: 8px;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.dx-button:hover,
.dx-button-primary:hover,
.dx-button-accredited:hover,
.dx-login-form form#dx-loginform input[type="submit"]:hover,
.dx-detailer-profile .submit .dx-button:hover {
    transform: none;
}

.dx-button-primary,
.dx-login-form form#dx-loginform input[type="submit"],
.dx-button-accredited {
    background: #d63638;
    border-color: #d63638;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08);
}

.dx-button-primary:hover,
.dx-login-form form#dx-loginform input[type="submit"]:hover,
.dx-button-accredited:hover {
    background: #b32d2e;
    border-color: #b32d2e;
    box-shadow: 0 4px 10px rgba(179, 45, 46, 0.2);
}

.dx-message {
    border-radius: 8px;
    padding: 14px 16px;
}

.dx-message.dx-success {
    background: #edfaef;
    color: #0a4b1c;
    border-left-color: #00a32a;
}

.dx-message.dx-error {
    background: #fcf0f1;
    color: #8a2424;
}

.dx-message.dx-info {
    background: #eff8ff;
    color: #12365a;
}

.dx-applications-table,
.dx-lookup-table,
.dx-profile-table {
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
}

.dx-applications-table th,
.dx-applications-table thead th,
.dx-lookup-result h4 {
    background: #1f2937 !important;
    color: #fff !important;
    letter-spacing: 0.03em;
}

.dx-applications-table tbody tr:hover {
    background: #f9fafb;
    transform: none;
    box-shadow: none;
}

.status-submitted,
.status-approved,
.status-void,
.dx-accredited-badge,
.dx-not-accredited-badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 2px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: none;
}

.status-submitted {
    color: #8a2424;
    background: #fcf0f1;
}

.status-approved {
    color: #0a4b1c;
    background: #edfaef;
}

.status-void {
    color: #50575e;
    background: #f0f0f1;
}

.dx-accredited-badge {
    color: #12365a;
    background: #e7f1fb;
}

.dx-not-accredited-badge {
    color: #50575e;
    background: #f0f0f1;
}

.dx-maintenance-guide-link {
    background: #1f2937;
    box-shadow: none;
}

.dx-maintenance-guide-link::before {
    background: #d63638;
}

.dx-maintenance-guide-link .dx-button {
    color: #d63638 !important;
    border-color: #fff;
}

.dx-maintenance-guide-link .dx-button:hover {
    color: #b32d2e !important;
    transform: none;
}

@media (max-width: 768px) {
    .dx-applications-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .dx-login-form h3,
    .dx-coating-submit-form h3,
    .dx-my-applications h3,
    .dx-code-lookup h3,
    .dx-detailer-profile h3,
    .dx-detailer-dashboard h3 {
        font-size: 22px;
    }
}
