/* Update container styles */
.container {
    width: 100%;
    max-width: 90% !important;
}

/* Update navbar styles */
#mainNav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: #121211 !important;
}

/* Update form container styles */
.enquiry-form {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    margin-bottom: 76px;
}

.enquiry-form h2 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

/* Form field spacing */
.enquiry-form .input {
    margin-bottom: 1.5rem;
}

.enquiry-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.enquiry-form .form-control:focus {
    border-color: #f4623a;
    box-shadow: 0 0 0 0.2rem rgba(244, 98, 58, 0.25);
}

/* Submit button styling */
.enquiry-form .submit-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #f4623a;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.enquiry-form .submit-button:hover {
    background-color: #d44d2d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .enquiry-form {
        padding: 1.5rem;
    }
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

.content {
    flex: 1;
    padding: 32px;
    margin-top: 40px;
}

/* Specific styling for contact form */
.form-container .content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacts.index.content {
    width: 100%;
    max-width: 90%;
    margin: 40px auto 76px;
    padding: 20px;
}

.contacts.index.content table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.contacts.index.content th, .contacts.index.content td {
    padding: 12px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    border: 1px solid #ddd;
}

.contacts.index.content th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.contacts.index.content tr:nth-child(even) {
    background-color: #f9f9f9;
}

.contacts.index.content tr:hover {
    background-color: #f1f1f1;
}

.contacts.index.content .actions {
    text-align: center;
}

.contacts.index.content h3 {
    text-align: center;
    margin: 20px 0;
}

.contacts.index.content .paginator {
    text-align: center;
    margin-top: 20px;
}

/* Paginator styling */
.paginator {
    margin-top: 20px;
    text-align: center;
}

.paginator ul.pagination {
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style: none;
}

.paginator ul.pagination li {
    display: inline;
    margin: 0 5px;
}

.paginator ul.pagination li a {
    text-decoration: none;
    color: #0073e6;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f5f7fa;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.paginator ul.pagination li a:hover {
    background-color: #0073e6;
    color: #fff;
}

.paginator ul.pagination li span {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #ddd;
    font-size: 14px;
}

.paginator p {
    margin-top: 10px;
    font-size: 12px;
    color: #333;
}

.left-button {
    align-self: flex-start;
}

.right-button {
    margin-left: auto;
}


.contacts.index.content .actions .button:first-child {
    background-color: #28a745 !important;
    color: white !important;
    border: 1px solid #28a745 !important;
}

.contacts.index.content .actions .button:nth-child(2) {
    background-color: #007bff !important;
    color: white !important;
    border: 1px solid #007bff !important;
}

.contacts.index.content .actions .button:nth-child(3) {
    background-color: #6c757d !important;
    color: white !important;
    border: 1px solid #6c757d !important;
}

.contacts.index.content .actions .button:last-child {
    background-color: #dc3545 !important;
    color: white !important;
    border: 1px solid #dc3545 !important;
}

.contacts.index.content .actions .button:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Login Form Wrapper */
.login-wrapper {
    background-color: #f8f9fa;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Login Form Container */
.login-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.login-form h2 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

/* Form Fields */
.login-form .input {
    margin-bottom: 1.5rem;
}

.login-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.login-form .form-control:focus {
    border-color: #f4623a;
    box-shadow: 0 0 0 0.2rem rgba(244, 98, 58, 0.25);
}

/* Submit Button */
.login-form .submit-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #f4623a;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    margin-top: 1rem;
}

.login-form .submit-button:hover {
    background-color: #d44d2d;
}

/* Additional Links */
.login-form .form-group.d-flex {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.login-form .btn.btn-link {
    color: #f4623a;
    text-decoration: none;
    padding: 0;
    font-size: 0.9rem;
}

.login-form .btn.btn-link:hover {
    color: #d44d2d;
    text-decoration: underline;
}


/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .login-wrapper {
        padding-top: 50px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 76px;
    }

    .login-form {
        padding: 1.5rem;
        margin: 0;
    }

    .login-form h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .login-form .input {
        margin-bottom: 1rem;
    }

    .login-form .form-group.d-flex {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
        text-align: center;
    }
}

/* Flash Messages Styling */
.message {
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    text-align: center;
}

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

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Enquiry Form Styling */
.enquiry-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 80px;
}

.enquiry-form h2 {
    color: white;
    background: #121211;
    margin: -30px -30px 30px -30px;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    font-weight: normal;
}

.enquiry-form .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.enquiry-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
}

.enquiry-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.enquiry-form .submit-button {
    background: #121211;
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.enquiry-form .submit-button:hover {
    background: #2a2a29;
}

/* Remove the default form field containers that CakePHP adds */
.enquiry-form div.input {
    margin-bottom: 20px;
}

.enquiry-form div.input label {
    font-weight: normal;
}

/* Admin Layout Styling */
body {
    padding-top: 50px;
    background-color: #f8f9fa;
}

.navbar-dark .navbar-brand {
    color: #ffffff !important;
    font-weight: 700;
    transition: color 0.3s ease;
}

.navbar-dark .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-dark .nav-link:hover {
    color: #f4623a !important;
}

/* Table Styling for Admin Pages */
.table-responsive {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.table {
    width: 100%;
    margin-bottom: 0;
}

.table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    padding: 12px;
}

.table td {
    padding: 12px;
    vertical-align: middle;
    border-bottom: 1px solid #dee2e6;
}

/* Admin Page Headers */
.content-header {
    margin-bottom: 20px;
}

.content-header h3 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

/* Admin Buttons */
.button-primary {
    background-color: #121211;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button-primary:hover {
    background-color: #2a2a29;
    color: white;
    text-decoration: none;
}

.button-secondary {
    background-color: #6c757d;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button-secondary:hover {
    background-color: #5a6268;
    color: white;
    text-decoration: none;
}

/* Contacts View Styling */
.contacts.index.content {
    padding: 20px 0;
}

.contacts.index.content h1 {
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
}

/* Table Styling */
.contacts.index.content table {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
    margin-bottom: 20px;
}

.contacts.index.content table th {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
    padding: 12px 15px;
    border-bottom: 2px solid #dee2e6;
    text-align: left;
}

.contacts.index.content table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dee2e6;
    color: #333;
}

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

/* Action Buttons */
.contacts.index.content .actions .button {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    margin: 0 2px;
}

.contacts.index.content .actions .button:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Add Button */
.contacts.index.content .actions a.button {
    background-color: #28a745;
    color: white;
    border: 1px solid #28a745;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.contacts.index.content .actions a.button:hover {
    background-color: #218838;
    transform: translateY(-1px);
}

/* Paginator Styling */
.contacts.index.content .paginator {
    margin-top: 20px;
    text-align: center;
}

.contacts.index.content .paginator ul.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.contacts.index.content .paginator ul.pagination li a,
.contacts.index.content .paginator ul.pagination li span {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    color: #007bff;
    text-decoration: none;
    background-color: white;
    transition: all 0.2s ease;
}

.contacts.index.content .paginator ul.pagination li span {
    background-color: #e9ecef;
    color: #6c757d;
    border-color: #dee2e6;
}

.contacts.index.content .paginator ul.pagination li a:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contacts.index.content table {
        display: block;
        overflow-x: auto;
    }

    .contacts.index.content .actions {
        flex-wrap: wrap;
    }

    .contacts.index.content .actions .button {
        min-width: 70px;
        padding: 4px 8px;
    }
}

/* Contact View Page Styling */
.contacts.view.content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.contacts.view.content h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.contacts.view.content table {
    width: 100%;
    margin-bottom: 30px;
}

.contacts.view.content table tr {
    border-bottom: 1px solid #f0f0f0;
}

.contacts.view.content table tr:last-child {
    border-bottom: none;
}

.contacts.view.content table th {
    width: 200px;
    padding: 15px 0;
    color: #666;
    font-weight: 500;
    text-align: left;
}

.contacts.view.content table td {
    padding: 15px 0;
    color: #333;
    font-size: 16px;
}

/* Side Navigation Styling */
.side-nav {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.side-nav .heading {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.side-nav-item {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.side-nav-item:hover {
    background-color: #f4623a;
    color: white;
    transform: translateX(5px);
    text-decoration: none;
}

/* Row and Column Layout */
.row {
    display: flex;
    flex-wrap: wrap;
}

.column {
    padding: 40px;
}

.column-edit {
    padding: 0 15px;
}

.column-80 {
    flex: 0 0 80%;
    max-width: 80%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .column-80 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contacts.view.content {
        padding: 20px;
    }

    .contacts.view.content table th {
        width: 150px;
    }
}

/* Contact Edit Form Styling */
.contacts.form.content {
    background: white;
    padding: 30px;
    padding-top: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 76px auto 0;
}

.contacts.form.content h2 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.contacts.form.content .description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.contacts.form.content .form-group {
    margin-bottom: 1.5rem;
}

.contacts.form.content label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
}

.contacts.form.content input[type="text"],
.contacts.form.content input[type="email"],
.contacts.form.content input[type="tel"],
.contacts.form.content textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.contacts.form.content textarea {
    min-height: 150px;
    resize: vertical;
}

.contacts.form.content input:focus,
.contacts.form.content textarea:focus {
    border-color: #f4623a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(244, 98, 58, 0.1);
    background-color: #fff;
}

.contacts.form.content button[type="submit"] {
    width: 100%;
    padding: 14px;
    background-color: #f4623a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contacts.form.content button[type="submit"]:hover {
    background-color: #d44d2d;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(244, 98, 58, 0.2);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .contacts.form.content {
        padding: 1.5rem;
        margin-top: 0;
    }

    .contacts.form.content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .contacts.form.content .description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

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

    .contacts.form.content label {
        font-size: 0.9rem;
    }

    .contacts.form.content input[type="text"],
    .contacts.form.content input[type="email"],
    .contacts.form.content input[type="tel"],
    .contacts.form.content textarea {
        padding: 10px;
        font-size: 16px; /* Keep 16px to prevent zoom on mobile */
    }

    .contacts.form.content textarea {
        min-height: 120px;
    }

    .contacts.form.content button[type="submit"] {
        padding: 12px;
        font-size: 0.95rem;
    }

    /* Improve touch target sizes */
    .contacts.form.content input,
    .contacts.form.content textarea,
    .contacts.form.content button {
        touch-action: manipulation;
    }
}

/* Error message styling */
.contacts.form.content .error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

/* Success message styling */
.contacts.form.content .success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Button Styling */
.button,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    min-width: 100px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Primary Button */
.button.primary,
button.primary,
input[type="submit"].primary {
    background-color: #28a745;
    color: white;
}

.button.primary:hover,
button.primary:hover,
input[type="submit"].primary:hover {
    background-color: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.2);
}

/* Secondary Button */
.button.secondary,
button.secondary {
    background-color: #6c757d;
    color: white;
}

.button.secondary:hover,
button.secondary:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(108, 117, 125, 0.2);
}

/* Danger Button */
.button.danger,
button.danger {
    background-color: #dc3545;
    color: white;
}

.button.danger:hover,
button.danger:hover {
    background-color: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
}

.admin-view th, .admin-view td {
    padding: 10px;
}

/* Side Navigation Buttons */
.side-nav-item {
    display: block;
    padding: 10px 15px;
    margin-bottom: 8px;
    color: #007bff;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 14px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.side-nav-item:hover {
    background-color: #e9ecef;
    color: #0056b3;
    transform: translateX(5px);
}

/* Form Submit Button */
.contacts.form.content .submit button {
    background-color: #28a745;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.1);
}

.contacts.form.content .submit button:hover {
    background-color: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.2);
}

/* Button Groups */
.button-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Responsive Button Adjustments */
@media (max-width: 768px) {
    .button,
    button,
    input[type="submit"] {
        padding: 8px 16px;
        min-width: 90px;
    }

    .contacts.index.content .actions .button {
        padding: 4px 8px;
        min-width: 70px;
        font-size: 12px;
    }
}

footer {
    margin-top: auto;
}

/* Admin View Table Styling */
.admins.view.content {
    width: 100%;
    max-width: 100%;
    margin: 30px auto 20px;
    padding: 50px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.admins.view.content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    font-size: 22px;
}

.admins.view.content h3 {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 3px solid #f0f0f0;
    text-align: center;
}

.admins.view.content th, .admins.view.content td {
    padding: 25px 30px;
    border-bottom: 2px solid #dee2e6;
    text-align: left;
    color: #333;
    line-height: 1.6;
}

.admins.view.content th {
    background-color: #f8f9fa;
    font-weight: bold;
    width: 400px;
    font-size: 18px;
}

.admins.view.content td {
    font-size: 22px;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.login-form .btn.btn-link {
    padding: 0;
    text-decoration: none;
    color: #FF6B35;
    margin: 0;
    border: none;
    background: none;
}

.login-form .btn.btn-link:hover {
    text-decoration: underline;
}

.login-form .form-group.d-flex {
    margin-top: 10px;
    padding: 0;
}

.login-form .align-left {
    text-align: left;
    margin-right: auto;
}

.login-form .align-right {
    text-align: right;
    margin-left: auto;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: none;
    border-radius: 0.5rem;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem;
}

.card-title {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.list-group-item-action:hover {
    background-color: #f8f9fa;
}

.btn-primary {
    background-color: #FF6B35;
    border-color: #FF6B35;
}

.btn-primary:hover {
    background-color: #e85f2d;
    border-color: #e85f2d;
}

#mainNav .navbar-nav .nav-item .nav-link:hover {
    color: #f4623a !important;
}

#mainNav .navbar-brand:hover {
    color: #f4623a !important;
}

#mainNav.navbar-shrink .navbar-brand:hover {
    color: #f4623a !important;
}

#mainNav.navbar-shrink .navbar-nav .nav-item .nav-link:hover {
    color: #f4623a !important;
}

/* For consistent NavBar styling across all pages */
#mainNav {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-color: #121211 !important;
  transition: background-color 0.2s ease;
}

/* Fix for container width and padding consistency */
#mainNav .container,
#mainNav .container-fluid,
#mainNav .container.px-4,
#mainNav .container.px-4.px-lg-5 {
    max-width: 1320px !important;
    width: 100%;
    margin: 0 auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

@media (min-width: 992px) {
    #mainNav {
        box-shadow: none;
        background-color: #121211 !important;
        padding: 0.75rem 0 !important;
    }

    #mainNav .container,
    #mainNav .container-fluid,
    #mainNav .container.px-4,
    #mainNav .container.px-4.px-lg-5 {
        max-width: 1320px !important;
        width: 100%;
        margin: 0 auto !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    #mainNav .navbar-brand {
        font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 1.15rem;
        padding: 0 !important;
        margin-right: 2rem;
    }

    #mainNav .navbar-brand:hover {
        color: #f4623a !important;
    }

    #mainNav .navbar-nav {
        margin-left: auto !important;
        margin-right: 0 !important;
    }

    #mainNav .navbar-nav .nav-item {
        margin: 0 0.25rem;
    }

    #mainNav .navbar-nav .nav-item .nav-link {
        color: rgba(255, 255, 255, 0.7) !important;
        padding: 0.5rem 0.5rem !important;
        font-size: 0.85rem;
        transition: color 0.3s ease;
    }

    #mainNav .navbar-nav .nav-item .nav-link:hover {
        color: #f4623a !important;
    }

    #mainNav .navbar-nav .nav-item:last-child .nav-link {
        padding-right: 0 !important;
    }

    /* Hide mobile elements on desktop */
    .mobile-icons-nav,
    .mobile-profile-icon,
    .navbar-toggler {
        display: none !important;
    }
}

/* Larger Desktop Screens */
@media (min-width: 1200px) {
    #mainNav .container,
    #mainNav .container-fluid,
    #mainNav .container.px-4,
    #mainNav .container.px-4.px-lg-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    #mainNav .navbar-brand {
        font-size: 1.25rem;
    }

    #mainNav .navbar-nav .nav-item {
        margin: 0 0.75rem;
    }

    #mainNav .navbar-nav .nav-item .nav-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
  #mainNav .container,
  #mainNav .container-fluid,
  #mainNav .container.px-4,
  #mainNav .container.px-4.px-lg-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

#mainNav .navbar-brand {
  font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-right: 2rem;
  padding-left: 0 !important;
}

#mainNav .navbar-nav {
  margin-right: 0 !important;
}

/* Fix for nav item spacing */
#mainNav .navbar-nav .nav-item {
  margin: 0 0.125rem;
}

@media (min-width: 992px) {
  #mainNav {
    box-shadow: none;
    background-color: #121211 !important;
  }

  #mainNav .navbar-brand {
    color: rgba(255, 255, 255, 0.7) !important;
  }

  #mainNav .navbar-brand:hover {
    color: #f4623a !important;
  }

  #mainNav .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 0 1rem !important;
  }

  #mainNav .navbar-nav .nav-item .nav-link:hover {
    color: #f4623a !important;
  }

  #mainNav .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0 !important;
  }
}

/* Customer Edit Form Styles */
.customers.form {
    padding: 3rem;
    max-width: 1400px;
    margin: 76px auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.customers.form h3 {
    color: #333;
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 2rem;
}

.customers.form .input {
    margin-bottom: 2rem;
}

.customers.form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #333;
    font-size: 1.1rem;
}

.customers.form input[type="text"],
.customers.form input[type="email"],
.customers.form input[type="password"] {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.customers.form input[type="text"]:focus,
.customers.form input[type="email"]:focus,
.customers.form input[type="password"]:focus {
    border-color: #f4623a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(244, 98, 58, 0.2);
}

.customers.form input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.customers.form .profile-preview {
    text-align: center;
    margin: 2rem 0;
}

.customers.form .profile-preview img {
    max-width: 250px;
    height: auto;
    border-radius: 50%;
    border: 3px solid #f4623a;
}

.customers.form .submit {
    text-align: center;
    margin-top: 3rem;
}

.customers.form .submit button,
.customers.form .btn {
    background-color: #f4623a;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.customers.form .submit button:hover,
.customers.form .btn:hover {
    background-color: #d44d2d;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(244, 98, 58, 0.2);
}

@media (max-width: 768px) {
    .customers.form {
        margin: 76px 1rem;
        padding: 1.5rem;
    }

    .customers.form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .customers.form label {
        font-size: 1rem;
    }

    .customers.form input[type="text"],
    .customers.form input[type="email"],
    .customers.form input[type="password"] {
        font-size: 16px;
        padding: 0.75rem;
    }

    .customers.form .submit button,
    .customers.form .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.2rem;
        min-width: auto;
        letter-spacing: normal;
    }

    .customers.form .profile-preview img {
        max-width: 200px;
    }
}

/* Newsletter Email Styling */
.email-newsletter {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}
.email-newsletter .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
}
.email-newsletter .header {
    text-align: center;
    padding: 20px 0;
    background-color: #f4623a;
    color: white;
}
.email-newsletter .content {
    padding: 20px;
}
.email-newsletter .footer {
    text-align: center;
    padding: 15px 0;
    font-size: 12px;
    color: #777;
    background-color: #f9f9f9;
    border-top: 1px solid #e9e9e9;
}
.email-newsletter .button {
    display: inline-block;
    padding: 10px 20px;
    margin: 20px 0;
    background-color: #f4623a;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}
.email-newsletter .social {
    text-align: center;
    padding: 10px 0;
}
.email-newsletter .social a {
    margin: 0 10px;
    display: inline-block;
}

.newsletter-success {
    font-size: 13px;
    color: #fff;
    background-color: rgba(244, 98, 58, 0.2);
    border-left: 3px solid #f4623a;
    padding: 5px 10px;
    margin-top: 8px;
    border-radius: 4px;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Reply Form Styles */
.contact-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 15px;
}

.message-box {
    background-color: white;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    margin-top: 10px;
    white-space: pre-wrap;
}

.contacts.form.content textarea {
    min-height: 200px;
    resize: vertical;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-family: inherit;
    line-height: 1.5;
}

.contacts.form.content textarea:focus {
    border-color: #f4623a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(244, 98, 58, 0.1);
}

/* User Account Dropdown Styling */
.nav-item.dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item.dropdown .points {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 4px;
}

.dropdown-menu {
    background-color: #121211;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 0;
    padding: 0.5rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.dropdown-header {
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: #333;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    color: #6c757d;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(244, 98, 58, 0.1);
    color: #f4623a;
}

.dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

/* Fix for navbar toggler */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Ensure proper z-index for dropdown */
#mainNav {
    z-index: 1030;
}

.dropdown-menu {
    z-index: 1031;
}

/* Actions Column Dropdown Menu */
.actions .dropdown {
    position: relative;
    display: inline-block;
}

.actions .btn-icon {
    background: none;
    border: none;
    color: #6c757d;
    padding: 0.25rem;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.actions .btn-icon:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #495057;
}

.actions .btn-icon:focus {
    outline: none;
    box-shadow: none;
}

.actions .btn-icon::after {
    display: none !important;
}

.actions .dropdown-menu {
    min-width: 160px;
    padding: 0.5rem 0;
    margin: 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}

.actions .dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #212529;
    text-decoration: none;
    display: block;
    width: 100%;
    clear: both;
    font-weight: 400;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    transition: all 0.2s ease;
}

.actions .dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
}

.actions .dropdown-menu .view {
    color: #28a745;
}

.actions .dropdown-menu .edit {
    color: #007bff;
}

.actions .dropdown-menu .reply {
    color: #17a2b8;
}

.actions .dropdown-menu .archive {
    color: #6c757d;
}

.actions .dropdown-menu .delete {
    color: #dc3545;
}

.actions .dropdown-menu .dropdown-item:hover {
    opacity: 0.85;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .actions .dropdown-menu {
        position: fixed;
        left: auto;
        right: 1rem;
        transform: none;
        width: auto;
        min-width: 160px;
        max-width: calc(100vw - 2rem);
    }
}

/* Masthead styling */
header.masthead {
    position: relative;
    height: 100vh !important;
    min-height: 100vh;
    padding: 0;
    margin: -5px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

header.masthead:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

header.masthead .container {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    max-width: 1320px !important;
    margin: 0 auto !important;
    text-align: center;
}

/* Button styling */
.discover-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background-color: #f4623a;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 2rem auto;
}

.discover-button:hover {
    background-color: #d44d2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    header.masthead {
        background-position: center center !important;
        background-size: cover !important;
        background-attachment: scroll !important;
    }

    header.masthead .container {
        padding: 0 20px;
    }

    header.masthead h1 {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    header.masthead p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .discover-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
}

/* Newsletter Signup Styles */
footer .newsletter-signup {
    margin-bottom: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

footer .input-group {
    display: flex;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

footer .input-group input[type="email"] {
    flex: 1;
    height: 40px;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
    border: none;
    background: #fff;
}

footer .input-group .btn-primary {
    height: 40px;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 4px;
    margin-left: 8px;
    background-color: #f4623a;
    border-color: #f4623a;
    white-space: nowrap;
}

footer .input-group .btn-primary:hover {
    background-color: #d44d2d;
    border-color: #d44d2d;
}

@media (max-width: 576px) {
    footer .newsletter-signup {
        max-width: 300px;
    }

    footer .input-group {
        max-width: 300px;
    }

    footer .input-group input[type="email"],
    footer .input-group .btn-primary {
        height: 36px;
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Form wrapper styling */
.form-wrapper {
    padding-top: 76px;
    padding: 76px 20px 76px;
    background-color: #f8f9fa;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Update form container styles */
.contacts.form.content {
    background: white;
    padding: 30px;
    padding-top: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 76px auto 0;
}

.contacts.form.content h2 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

/* Form Fields */
.contacts.form.content .input {
    position: relative;
}

.contacts.form.content .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.contacts.form.content .form-control:focus {
    border-color: #f4623a;
    box-shadow: 0 0 0 0.2rem rgba(244, 98, 58, 0.25);
}

/* Submit Button */
.contacts.form.content .submit {
    text-align: center;
}

.contacts.form.content .submit button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #f4623a;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    margin-top: 1rem;
}

.contacts.form.content .submit button:hover {
    background-color: #d44d2d;
}

/* Desktop specific styles */
@media (min-width: 992px) {

    .contacts.form.content {
        margin-top: 0;
        padding: 2.5rem;
    }

    .mobile-icons-nav {
        display: none;
    }

    .mobile-profile-icon {
        display: none;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .form-wrapper,
    .login-wrapper {
        padding-top: 50px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 50px;
    }

    .contacts.form.content {
        padding: 1.5rem;
        margin-top: 0;
    }

    .contacts.form.content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Registration Form Wrapper */
.registration-wrapper {
    padding-top: 120px;
    padding: 120px 20px 20px 20px;
    background-color: #f8f9fa;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 768px) {
    .registration-wrapper {
        padding-top: 120px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
    }
}

/* Registration Form Container */
.registration-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.registration-form h2 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

/* Form Fields */
.registration-form .input {
    margin-bottom: 1.25rem;
}

.registration-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.registration-form .form-control:focus {
    border-color: #f4623a;
    box-shadow: 0 0 0 0.2rem rgba(244, 98, 58, 0.25);
}

.registration-form .text-muted {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    color: #6c757d;
}

/* Submit Button */
.registration-form .btn-primary {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #f4623a;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    margin-top: 1rem;
}

.registration-form .btn-primary:hover {
    background-color: #d44d2d;
}

/* Back to Login Link */
.registration-form .btn-link {
    color: #f4623a;
    text-decoration: none;
    padding: 0;
    font-size: 0.9rem;
}

.registration-form .btn-link:hover {
    color: #d44d2d;
    text-decoration: underline;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .registration-form {
        padding: 1.5rem;
        margin: 0;
    }

    .registration-form h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .registration-form .input {
        margin-bottom: 1rem;
    }

    .registration-form .btn-primary {
        margin-top: 0.75rem;
    }
}

/* Forget Password Form Wrapper */
.forget-password-wrapper {
    background-color: #f8f9fa;
    min-height: calc(100vh - 250px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .forget-password-wrapper {
        padding-top: 140px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 20px;
        margin-bottom: 10px;
    }
}

/* Forget Password Form Container */
.forget-password-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.forget-password-form h2 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.forget-password-form .text-muted {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #6c757d;
}

/* Form Fields */
.forget-password-form .input {
    margin-bottom: 1.25rem;
}

.forget-password-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.forget-password-form .form-control:focus {
    border-color: #f4623a;
    box-shadow: 0 0 0 0.2rem rgba(244, 98, 58, 0.25);
}

/* Submit Button */
.forget-password-form .submit-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #f4623a;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    margin-top: 0.5rem;
}

.forget-password-form .submit-button:hover {
    background-color: #d44d2d;
}

/* Back to Login Link */
.forget-password-form .btn-link {
    color: #f4623a;
    text-decoration: none;
    padding: 0;
    font-size: 0.9rem;
}

.forget-password-form .btn-link:hover {
    color: #d44d2d;
    text-decoration: underline;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .forget-password-form {
        padding: 1.5rem;
        margin: 0;
    }

    .forget-password-form h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .forget-password-form .text-muted {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .forget-password-form .input {
        margin-bottom: 1rem;
    }
}

/* Reset Password Form Wrapper */
.reset-password-wrapper {
    padding-top: 76px;
    padding: 76px 20px 76px;
    background-color: #f8f9fa;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 768px) {
    .reset-password-wrapper {
        padding-top: 76px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
    }
}

/* Reset Password Form Container */
.reset-password-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.reset-password-form h2 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Password Requirements Box */
.reset-password-form .password-requirements {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #f4623a;
    margin: 1rem 0;
}

.reset-password-form .password-requirements p {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.reset-password-form .password-requirements ul {
    padding-left: 1.25rem;
    margin-bottom: 0;
    color: #6c757d;
    font-size: 0.875rem;
}

.reset-password-form .password-requirements li {
    margin-bottom: 0.25rem;
}

.reset-password-form .password-requirements li:last-child {
    margin-bottom: 0;
}

/* Form Fields */
.reset-password-form .input {
    margin-bottom: 1.25rem;
}

.reset-password-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.reset-password-form .form-control:focus {
    border-color: #f4623a;
    box-shadow: 0 0 0 0.2rem rgba(244, 98, 58, 0.25);
}

/* Submit Button */
.reset-password-form .submit-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #f4623a;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    margin-top: 0.5rem;
}

.reset-password-form .submit-button:hover {
    background-color: #d44d2d;
}

/* Back to Login Link */
.reset-password-form .btn-link {
    color: #f4623a;
    text-decoration: none;
    padding: 0;
    font-size: 0.9rem;
}

.reset-password-form .btn-link:hover {
    color: #d44d2d;
    text-decoration: underline;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .reset-password-form {
        padding: 1.5rem;
        margin: 0;
    }

    .reset-password-form h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .reset-password-form .input {
        margin-bottom: 1rem;
    }

    .reset-password-form .password-requirements {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }
}

/* Customer Dashboard Styles */
.customer-dashboard {
    padding-top: 40px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.customer-dashboard .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.customer-dashboard .card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: none;
    height: auto !important;
    margin: 1rem auto;
    max-width: 1400px;
}

.customer-dashboard .card-header {
    background-color: transparent;
    border-bottom: 1px solid #dee2e6;
    padding: 1.5rem;
}

.customer-dashboard .card-title {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.customer-dashboard .card-body {
    padding: 1.5rem;
}

.customer-dashboard .profile-picture {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin: 10px auto;
}

.customer-dashboard .btn-primary {
    background-color: #f4623a;
    border-color: #f4623a;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 5px;
    transition: all 0.2s ease;
    margin: 0 0.25rem;
}

.customer-dashboard .btn-primary:hover {
    background-color: #d44d2d;
    border-color: #d44d2d;
    transform: translateY(-1px);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {

    .customer-dashboard .card {
        margin-bottom: 15px;
    }

    .customer-dashboard .card-header {
        padding: 1rem;
        flex-direction: column;
        gap: 10px;
    }

    .customer-dashboard .card-header .btn-primary {
    width: 100%;
        margin: 0.5rem 0;
    }

    .customer-dashboard .card-header .align-items-end {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .customer-dashboard .card-header .align-items-end .btn {
    width: 100%;
    }

    .customer-dashboard .profile-picture {
        width: 200px;
        height: 200px;
    }

    .customer-dashboard h2 {
        font-size: 1.5rem;
    text-align: center;
    }

    .customer-dashboard .card-title {
        font-size: 1.1rem;
    }

    .customer-dashboard .card-body {
        padding: 1rem;
    }
}

/* Navbar Dropdown Styles */
.navbar .dropdown-menu {
    background-color: #343a40;
    border: none;
    border-radius: 0.25rem;
    margin-top: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar .dropdown-item {
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: #495057;
    color: #ffffff;
}

/* Actions Dropdown Styles */
.actions .dropdown-menu {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.actions .dropdown-item {
    color: #212529;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.actions .dropdown-item:hover,
.actions .dropdown-item:focus {
    background-color: #f8f9fa;
    color: #16181b;
}

@media (max-width: 768px) {
    .navbar .dropdown-menu,
    .actions .dropdown-menu {
        width: 100%;
        margin-top: 0;
    }

    .navbar .dropdown-item,
    .actions .dropdown-item {
        padding: 0.75rem 1.5rem;
    }
}

/* Custom List Wrapper */
.custom-list-wrapper {
    padding: 20px;
    margin-bottom: 76px;
}

.custom-list-wrapper .side-nav {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 71px;
}

.custom-list-wrapper .side-nav .heading {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c99863;
}

.custom-list-wrapper .side-nav-item {
    display: block;
    padding: 8px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.custom-list-wrapper .side-nav-item:hover {
    background-color: #c99863;
    color: white;
}

.custom-list-wrapper .contacts.index.content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.search-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.search-box {
    flex: 1;
    max-width: 300px;
}

.filter-box {
    width: 200px;
}

@media (max-width: 768px) {
    .custom-list-wrapper .side-nav {
        margin-bottom: 20px;
        margin-top: 0;
    }

    .search-filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box, .filter-box {
        width: 100%;
        max-width: none;
    }
}

/* Customer Booking Form Styles */
.booking-form-wrapper {
    padding: 50px 20px 76px;
    background-color: #f8f9fa;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.booking-form legend {
    color: #333;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    width: 100%;
}

.booking-form p {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}

.booking-form .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.booking-form .form-control:focus {
    border-color: #f4623a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(244, 98, 58, 0.1);
    background-color: #fff;
}

.booking-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #f4623a;
    color: white;
    border: none;
        border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form .btn-primary:hover {
    background-color: #d44d2d;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(244, 98, 58, 0.2);
}

@media (max-width: 768px) {
    .booking-form-wrapper {
        padding: 90px 15px 20px;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .booking-form legend {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .booking-form p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

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

    .booking-form .btn-primary {
        padding: 0.875rem;
        font-size: 1rem;
    }
}

.customer-dashboard .table-responsive {
    margin: 1rem 0;
    box-shadow: none;
    border: none;
}

.customer-dashboard table {
    width: 100%;
    border-spacing: 0;
    background-color: #fff;
    margin-bottom: 1rem;
}

.customer-dashboard table thead {
    background-color: #f8f9fa;
}

.customer-dashboard table th {
    padding: 1rem;
    font-weight: 600;
    text-align: left;
    border-bottom: none;
    color: #495057;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.customer-dashboard table td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: none;
    color: #212529;
    font-size: 0.95rem;
}

.customer-dashboard table tbody tr {
    border-bottom: none;
}

.customer-dashboard table tbody tr:hover {
    background-color: rgba(248, 249, 250, 0.5);
    transition: background-color 0.2s ease;
}

.customer-dashboard .actions {
    white-space: nowrap;
    text-align: center;
    min-width: 100px;
}

.customer-dashboard .actions .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    min-width: 60px;
    background-color: #0d6efd;
    color: white;
    border: 1px solid #0d6efd;
}

.customer-dashboard .actions .button:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}

.customer-dashboard table th.actions {
    text-align: center;
}

/* Empty State Style */
.customer-dashboard .card-body p:only-child {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .customer-dashboard .actions {
        min-width: 80px;
    }

    .customer-dashboard .actions .button {
        padding: 0.4rem 0.75rem;
        font-size: 0.8125rem;
        min-width: 50px;
        margin: 0 0.125rem;
    }

    .customer-dashboard table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .customer-dashboard table th,
    .customer-dashboard table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

.booking-details-wrapper {
    padding: 2rem;
    background-color: #f8f9fa;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.booking-details {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
}

.booking-details h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.booking-details h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #f4623a;
    border-radius: 2px;
}

.booking-details .booking-info {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.booking-details .info-group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.booking-details .info-group:last-child {
    margin-bottom: 0;
}

.booking-details .info-group label {
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 0.75rem;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-details .info-group .form-control-static {
    color: #333;
    font-size: 1.25rem;
    padding: 0.5rem 0;
    margin: 0;
    font-weight: 500;
}

.booking-details .stylists-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.booking-details .stylist-item {
    background-color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.booking-details .stylist-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.booking-details .stylist-item p {
    margin: 0;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
}

.booking-details .actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.booking-details .actions .btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.booking-details .actions .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.booking-details .actions .btn-primary {
    background-color: #f4623a;
    border-color: #f4623a;
    color: white;
}

.booking-details .actions .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

.booking-details .actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .booking-details-wrapper {
        padding: 1rem;
    }

    .booking-details {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .booking-details h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .booking-details .booking-info {
        padding: 1.5rem;
    }

    .booking-details .info-group {
        margin-bottom: 1.5rem;
    }

    .booking-details .info-group label {
        font-size: 18px;
    }

    .booking-details .info-group .form-control-static {
        font-size: 1.15rem;
    }

    .booking-details .actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .booking-details .actions .btn {
        width: 100%;
        padding: 0.875rem;
    }

    .booking-details .stylists-list {
        flex-direction: column;
        gap: 0.75rem;
    }

    .booking-details .stylist-item {
        width: 100%;
        text-align: center;
    }
}

/* Custom View Wrapper */
.custom-view-wrapper {
    padding: 2rem 2rem 1rem 2rem;
    margin-top: 76px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 768px) {
    .custom-view-wrapper {
        padding: 1rem;
        margin-top: 76px;
    }
}

/* Custom Edit Wrapper */
.custom-edit-wrapper {
    padding: 2rem 2rem 1rem 2rem;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 768px) {
    .custom-edit-wrapper {
        padding: 1rem;
        margin-top: 76px;
    }
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-error {
    border-color: #dc3545 !important;
}

.form-error:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.message.error {
    background: #dc3545;
    color: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
}

/* Style for validation errors in forms */
.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    color: #dc3545;
    display: block;
    margin-top: 0.25rem;
}

/* Password validation errors */
.password-requirements ul li.invalid {
    color: #dc3545;
}

/* Flash messages */
.message.error {
    background-color: #dc3545;
    color: white;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0.25rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Admin Form Content Styles */
.admins.form.content {
    background: white;
    max-width: 600px;
    margin: 76px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admins.form.content h2 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.admins.form.content .form-group {
    margin-bottom: 1.25rem;
}

.admins.form.content label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.admins.form.content input[type="text"],
.admins.form.content input[type="email"],
.admins.form.content input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.admins.form.content input[type="text"]:focus,
.admins.form.content input[type="email"]:focus,
.admins.form.content input[type="password"]:focus {
    border-color: #f4623a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(244, 98, 58, 0.2);
}

.admins.form.content .password-requirements {
    background-color: #f8f9fa;
    padding: 0.75rem;
    border-radius: 5px;
    margin: 0.5rem 0 1rem 0;
}

.admins.form.content .password-requirements h6 {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.admins.form.content .password-requirements ul {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.8rem;
    color: #666;
}

.admins.form.content .password-requirements ul li {
    margin-bottom: 0.25rem;
}

.admins.form.content .btn-primary {
    background-color: #f4623a;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.admins.form.content .btn-primary:hover {
    background-color: #d44d2d;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(244, 98, 58, 0.2);
}

@media (max-width: 768px) {
    .admins.form.content {
        margin: 76px 1rem;
        padding: 1.25rem;
    }

    .admins.form.content h2 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .admins.form.content label {
        font-size: 0.9rem;
    }

    .admins.form.content input[type="text"],
    .admins.form.content input[type="email"],
    .admins.form.content input[type="password"] {
        font-size: 16px;
        padding: 0.625rem;
    }

    .admins.form.content .btn-primary {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.95rem;
        min-width: auto;
        letter-spacing: normal;
    }
}

.password-requirements {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #f4623a;
}

.password-requirements ul {
    padding-left: 18px;
    margin-bottom: 0;
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
    #mainNav {
        padding: 10px 0 !important;
    }

    .mobile-icons-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: left;
    }

    .navbar-toggler {
        padding: 8px;
        border: none;
        background: transparent;
        color: rgba(255, 255, 255, 0.9);
        order: 1;
        margin: 0;
        margin-left: -20px;
    }

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-brand {
        color: #fff;
        font-size: 1.25rem;
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        order: 2;
    }

    .mobile-profile-icon {
        order: 3;
        margin-left: auto;
        z-index: 1050;
    }

    .mobile-profile-icon .btn-link {
        color: rgba(255, 255, 255, 0.9);
        padding: 8px;
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        transition: color 0.3s ease;
        border: none;
    }

    .mobile-profile-icon .btn-link:hover {
        color: rgba(255, 255, 255, 0.7);
    }

    .mobile-profile-icon .dropdown-menu {
        position: absolute;
        right: 0;
        left: auto;
        top: 100%;
        margin-top: 10px;
        background-color: #121211;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        min-width: 200px;
        padding: 0.5rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .mobile-profile-icon .dropdown-item {
        padding: 0.75rem 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.2s ease;
    }

    .mobile-profile-icon .dropdown-item:hover {
        background-color: rgba(244, 98, 58, 0.1);
        color: #f4623a;
    }

    .mobile-profile-icon .dropdown-item i {
        width: 20px;
        text-align: center;
        color: rgba(255, 255, 255, 0.7);
    }

    .mobile-profile-icon .dropdown-divider {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0.5rem 0;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        padding: 1rem 1.5rem;
        background-color: #121211;
        transition: left 0.3s ease-in-out;
        z-index: 1040;
        overflow-y: auto;
        margin-top: 54px;
    }

    .navbar-collapse.show {
        left: 0;
    }

    .navbar-nav {
        padding: 0;
        margin: 0;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        padding: 1rem;
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        color: #fff !important;
        background-color: rgba(255, 255, 255, 0.1);
        padding-left: 1.5rem;
    }
}

@media (max-width: 991.98px) {
/* Mobile Profile Icon */
.mobile-profile-icon {
    position: fixed;
    right: 15px;
    margin-top: 9px;
    top: 15px;
    z-index: 1000;
    margin-right: -20px;
}

.mobile-profile-icon .btn-link {
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 0;
    border: none;
}

.mobile-profile-icon .btn-link:hover {
    color: #f8f9fa;
}

.mobile-profile-icon .dropdown-menu {
    background-color: #121211;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    margin-right: 5px;
    right: 0;
    left: auto;
}

.mobile-profile-icon .dropdown-item {
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-profile-icon .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mobile-profile-icon .dropdown-item i {
    width: 20px;
    text-align: center;
}

.mobile-profile-icon .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 5px 0;
}
}

/* Dashboard Table Styles */
.dashboard-table {
    border-collapse: collapse;
    width: 100%;
}
.dashboard-table th,
.dashboard-table td {
    border: 1px solid #dee2e6;
    padding: 12px;
}
.dashboard-table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}
.dashboard-table tbody tr {
    border-bottom: 1px solid #dee2e6;
}
.dashboard-table tbody tr:hover {
    background-color: #f5f5f5;
}
.dashboard-table tbody tr:last-child {
    border-bottom: 1px solid #dee2e6;
}

.customer-index-dashboard {
    padding-top: 76px;
    padding-bottom: 40px;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.customer-index-dashboard .actions {
    white-space: nowrap;
    text-align: center;
    min-width: 100px;
}

.customer-index-dashboard .actions .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    min-width: 60px;
    background-color: #0d6efd;
    color: white;
    border: 1px solid #0d6efd;
}

.customer-index-dashboard .actions .button:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}

/* Payments Admin Index Styling */
.payments.index.content {
    width: 100%;
    max-width: 95%;
    margin: 40px auto 76px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.payments.index.content h3 {
    text-align: center;
    margin: 20px 0 30px 0;
    color: #333;
    font-weight: 600;
}

.payments.index.content .table-responsive {
    overflow-x: auto;
}

.payments.index.content table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.payments.index.content th,
.payments.index.content td {
    padding: 12px 15px;
    text-align: left;
    white-space: nowrap;
    border: 1px solid #e9ecef;
}

.payments.index.content td.notes-cell,
.payments.index.content td.customer-cell {
    white-space: normal;
}

.payments.index.content th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.payments.index.content tr:nth-child(even) {
    background-color: #fdfdfe;
}

.payments.index.content tr:hover {
    background-color: #f1f3f5;
}

.payments.index.content .paginator {
    text-align: center;
    margin-top: 30px;
}

.payments.index.content table a {
    color: #007bff;
    text-decoration: none;
}

.payments.index.content table a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.admin-background {
    padding-top: 40px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: linear-gradient(147deg,rgba(62, 149, 207, 1) 16%, rgba(115, 140, 230, 1) 41%, rgba(158, 74, 253, 1) 73%, rgba(105, 71, 255, 1) 100%);
}

.admin-view-wrapper {
    padding: 2rem 2rem 1rem 2rem;
    background-color: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 90%;
    margin: 40px auto 76px;
    border-radius: 12px;
}

.admin-border {
    border: 8px solid #1e2125;
}

.service-border {
    border: 3px solid #1e2125;
}

/* Brown for Mark as Paid button */
.contacts.index.content .actions .button.button-mark-paid {
    background-color: #A0522D !important;
    border-color: #A0522D !important;
    color: white !important;
}

.contacts.index.content .actions .button.button-mark-paid:hover {
    background-color: #8B4513 !important;
    border-color: #7A3C10 !important;
    color: white !important;
}

/* Purple for Refund Processed button */
.contacts.index.content .actions .button.button-refund-processed {
    background-color: #800080 !important;
    border-color: #800080 !important;
    color: white !important;
}

.contacts.index.content .actions .button.button-refund-processed:hover {
    background-color: #6A0DAD !important;
    border-color: #5B009A !important;
    color: white !important;
}
