.mn-dashboard {
    width: 100%;
    padding: 40px 0;
}

.mn-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mn-dashboard-header h2 {
    font-size: 32px;
    margin: 0 0 10px;
}

.mn-dashboard-header p {
    margin: 0;
    color: #777;
}

.mn-dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mn-dashboard-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.mn-card-icon {
    font-size: 35px;
    margin-bottom: 20px;
}

.mn-dashboard-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.mn-dashboard-card p {
    color: #777;
    margin-bottom: 25px;
}

.mn-client-count {
    font-size: 42px;
    font-weight: 700;
    color: #d4a514;
}

.mn-dashboard-btn,
.mn-logout-btn {
    display: inline-block;
    background: #d4a514;
    color: #ffffff !important;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 600;
}

.mn-dashboard-btn:hover {
    background: #111111;
}

.mn-logout-btn {
    background: #111111;
}

.mn-logout-btn:hover {
    background: #d4a514;
}

@media (max-width: 767px) {

    .mn-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .mn-dashboard-cards {
        grid-template-columns: 1fr;
    }

}

/* ========================================
   MY CLIENTS
======================================== */

.mn-my-clients {
    width: 100%;
    padding: 40px 0;
}

.mn-clients-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.mn-clients-header h2 {
    font-size: 32px;
    margin: 0 0 8px;
}

.mn-clients-header p {
    margin: 0;
    color: #777;
}


/* TABLE */

.mn-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.mn-clients-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.mn-clients-table th {
    background: #111111;
    color: #ffffff;
    text-align: left;
    padding: 16px 18px;
    font-size: 15px;
}

.mn-clients-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #eeeeee;
}

.mn-clients-table tbody tr:hover {
    background: #fafafa;
}


/* NO CLIENTS */

.mn-no-clients {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
}

.mn-no-clients h3 {
    margin-bottom: 10px;
}

.mn-no-clients p {
    color: #777;
    margin-bottom: 25px;
}


/* BACK DASHBOARD */

.mn-back-dashboard {
    margin-top: 30px;
}

.mn-back-dashboard a {
    color: #111111;
    font-weight: 600;
    text-decoration: none;
}

.mn-back-dashboard a:hover {
    color: #d4a514;
}


/* MOBILE */

@media (max-width: 767px) {

    .mn-clients-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .mn-clients-table {
        min-width: 800px;
    }

    .mn-no-clients {
        padding: 30px 20px;
    }

}
/* ========================================
   CLIENT ACTIONS
======================================== */

.mn-client-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mn-client-actions a {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
}

.mn-action-view {
    background: #111111;
    color: #ffffff !important;
}

.mn-action-edit {
    background: #d4a514;
    color: #ffffff !important;
}

.mn-action-delete {
    background: #dc3545;
    color: #ffffff !important;
}

.mn-action-view:hover,
.mn-action-edit:hover,
.mn-action-delete:hover {
    opacity: 0.8;
    color: #ffffff !important;
}


/* SUCCESS MESSAGE */

.mn-success-message {
    background: #eaf7ee;
    border-left: 4px solid #28a745;
    color: #155724;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 4px;
}
/* ========================================
   VIEW CLIENT
======================================== */

.mn-view-client {
    width: 100%;
    padding: 40px 0;
}

.mn-client-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mn-detail-item {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 25px;
    border-radius: 10px;
}

.mn-detail-item label {
    display: block;
    color: #777777;
    font-size: 14px;
    margin-bottom: 8px;
}

.mn-detail-item p {
    margin: 0;
    color: #111111;
    font-size: 17px;
    font-weight: 600;
}

.mn-detail-full {
    grid-column: 1 / -1;
}

@media (max-width: 767px) {

    .mn-client-details {
        grid-template-columns: 1fr;
    }

    .mn-detail-full {
        grid-column: auto;
    }

}
.mn-edit-client-wrapper {
    max-width: 1100px;
    margin: 50px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.mn-edit-client-header {
    margin-bottom: 35px;
}

.mn-edit-client-header h2 {
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 700;
}

.mn-edit-client-header p {
    margin: 0;
    color: #777;
}

.mn-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.mn-form-group {
    display: flex;
    flex-direction: column;
}

.mn-form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #222;
}

.mn-form-group input,
.mn-form-group select,
.mn-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
}

.mn-form-group input:focus,
.mn-form-group select:focus,
.mn-form-group textarea:focus {
    border-color: #d6a600;
}

.mn-full-width {
    grid-column: 1 / -1;
}

.mn-form-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.mn-update-client-btn {
    padding: 14px 25px;
    background: #d6a600;
    color: #ffffff;
    border: 0;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.mn-update-client-btn:hover {
    background: #b98f00;
}

.mn-cancel-btn {
    padding: 14px 25px;
    background: #111111;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
}

.mn-cancel-btn:hover {
    color: #ffffff;
}

.mn-client-error {
    padding: 15px 20px;
    margin-bottom: 25px;
    background: #fff1f1;
    border-left: 4px solid #d63638;
    color: #d63638;
}

.mn-action-btn {
    display: inline-block;
    padding: 7px 14px;
    margin-right: 5px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.mn-view-btn {
    background: #111111;
    color: #ffffff;
}

.mn-edit-btn {
    background: #d6a600;
    color: #ffffff;
}

.mn-action-btn:hover {
    color: #ffffff;
}


@media (max-width: 767px) {

    .mn-edit-client-wrapper {
        margin: 25px 15px;
        padding: 25px 20px;
    }

    .mn-form-grid {
        grid-template-columns: 1fr;
    }

    .mn-full-width {
        grid-column: auto;
    }

    .mn-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mn-update-client-btn,
    .mn-cancel-btn {
        width: 100%;
        text-align: center;
    }
}