/* =============================================================
   BACK OFFICE – LOGIN PAGE  (two-column split card layout)
   All brand colours live here as CSS variables.
   Change --bo-brand-primary once to retheme the entire page.
   ============================================================= */

:root {
    --bo-brand-primary:    #033769;   /* Navy – main brand colour        */
    --bo-brand-hover:      #022a54;   /* Darker navy for hovers          */
    --bo-left-panel-bg:    #B4DFFF;   /* Left panel light blue           */
    --bo-card-shadow:      0 20px 40px rgba(0, 0, 0, 0.22);
    --bo-card-radius:      16px;
    --bo-input-border:     #ced4da;
    --bo-input-focus:      #033769;
    --bo-text-muted:       #666666;
    --bo-card-max-width:   960px;
}

/* ── Full-page navy background ──────────────────────────────── */
.bo-login-page {
    background-color: var(--bo-brand-primary);
    min-height: 100vh;
    margin: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

/* ── Outer wrapper / centering ──────────────────────────────── */
.bo-login-wrapper {
    width: 100%;
    max-width: var(--bo-card-max-width);
}

/* ── Split card ──────────────────────────────────────────────── */
.bo-login-card-outer {
    background: #ffffff;
    border-radius: var(--bo-card-radius);
    overflow: hidden;
    box-shadow: var(--bo-card-shadow);
    width: 100%;
}

/* ── Force two columns, override Bootstrap 4 row gutters ──────── */
.bo-login-row {
    display: flex !important;
    flex-wrap: nowrap;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ── Left panel ──────────────────────────────────────────────── */
.bo-login-left {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    background-color: var(--bo-left-panel-bg);
    background-image: url('../img/Vector.svg');
    background-repeat: no-repeat;
    background-size: 100% 50%;
    background-position: center bottom;
    min-height: 380px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* ── White ellipse section at the bottom of the left panel ── */
.bo-login-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -60%;
    width: 220%;
    height: 46%;
    background: #FAFAFA;
    border-radius: 50% 50% 0 0 / 38% 38% 0 0;
    z-index: 0;
}

.bo-login-left-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 32px;
    position: relative;
    z-index: 1;
}

.bo-login-left-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 6px rgba(3, 55, 105, 0.2));
}

.bo-login-left-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bo-brand-primary);
    margin: 0 0 8px;
}

.bo-login-left-sub {
    font-size: 0.9rem;
    color: var(--bo-brand-primary);
    margin: 0 0 24px;
    max-width: 240px;
    line-height: 1.5;
}

.bo-login-left-illustration {
    width: 100%;
    max-width: 360px;
    height: auto;
    opacity: 0.85;
    margin-top: 8px;
    display: block;
}

/* ── Right panel ─────────────────────────────────────────────── */
.bo-login-right {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding: 48px 40px 0;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    background: #ffffff;
}

/* Header: logo centred at the top */
.bo-rp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.bo-login-logo-img {
    /* height: 48px; */
    width: auto;
    object-fit: contain;
}

/* Body: title + subtitle + form — grows to fill available space */
.bo-rp-body {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
}

/* Footer: copyright pinned to the bottom */
.bo-rp-footer {
    margin-top: 12px;
    padding-top: 0;
    padding-bottom: 0;
}

.bo-login-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bo-brand-primary);
    margin: 0 0 4px;
    text-align: center;
}

.bo-login-form-sub {
    font-size: 1.25rem;
    color: var(--bo-text-muted);
    margin: 0 0 16px;
    text-align: center;
}

/* ── Tighten form row gaps inside login form ─────────────────── */
.bo-rp-body .mb-3 {
    margin-bottom: 12px !important;
}

.bo-rp-body .mb-4 {
    margin-bottom: 14px !important;
}

/* ── Field labels ────────────────────────────────────────────── */
.bo-field-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: #333333;
    margin-bottom: 6px;
    display: block;
}

/* ── Input fields ────────────────────────────────────────────── */
.bo-form-control {
    height: 46px !important;
    border: 1.5px solid var(--bo-input-border) !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 0.9rem !important;
    color: #333 !important;
    background-color: #fff !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    width: 100%;
}

.bo-form-control:focus {
    border-color: var(--bo-input-focus) !important;
    box-shadow: 0 0 0 3px rgba(3, 55, 105, 0.1) !important;
    outline: none !important;
}

.bo-form-control::placeholder {
    color: #b0b5bf !important;
    font-size: 0.875rem !important;
}

/* ── Input group icon (kept for backward compat, hidden) ──────── */
.bo-input-icon {
    display: none !important;
}

.input-group:focus-within .bo-input-icon {
    display: none !important;
}

/* ── Remember me label ───────────────────────────────────────── */
.bo-remember-label {
    font-size: 0.875rem !important;
    color: #555 !important;
    cursor: pointer;
}

/* ── Login button ────────────────────────────────────────────── */
.bo-btn-login {
    background-color: var(--bo-brand-primary) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    padding: 10px !important;
    border-radius: 6px !important;
    width: 100%;
    display: block;
    letter-spacing: 0.3px;
    transition: background-color 0.2s ease, transform 0.1s ease !important;
}

.bo-btn-login:hover,
.bo-btn-login:focus {
    background-color: var(--bo-brand-hover) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(3, 55, 105, 0.35) !important;
}

.bo-btn-login:active {
    transform: translateY(0) !important;
}

/* ── Forgot password link ────────────────────────────────────── */
.bo-forgot-link {
    font-size: 0.875rem !important;
    color: var(--bo-text-muted) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.bo-forgot-link:hover {
    color: var(--bo-brand-primary) !important;
    text-decoration: underline !important;
}

/* ── Copyright line ──────────────────────────────────────────── */
.bo-login-copyright {
    text-align: center;
    margin-top: 0;
    font-size: 0.8125rem;
    color: #aaaaaa;
    margin-bottom: 0;
}

/* ── Validation messages ─────────────────────────────────────── */
.invalid-feedback {
    font-size: 0.8rem !important;
}

/* ── Responsive: large desktops (1200px+) ────────────────────── */
@media (min-width: 1200px) {
    :root { --bo-card-max-width: 1040px; }
}

/* ── Responsive: medium desktops / laptops (992px – 1199px) ──── */
@media (max-width: 1199px) and (min-width: 992px) {
    :root { --bo-card-max-width: 900px; }
    .bo-login-right {
        padding: 40px 32px 0;
    }
    .bo-login-left-illustration {
        width: 320px !important;
    }
}

/* ── Responsive: tablets landscape / small laptops (768px – 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    :root { --bo-card-max-width: 720px; }
    .bo-login-page {
        padding: 20px 12px;
    }
    .bo-login-right {
        padding: 32px 28px 0;
    }
    .bo-login-left {
        min-height: 320px;
    }
    .bo-login-left-illustration {
        width: 240px !important;
    }
    .bo-login-form-title {
        font-size: 1.15rem;
    }
    .bo-login-form-sub {
        font-size: 1.05rem;
    }
    .bo-rp-header {
        margin-bottom: 10px;
    }
    .bo-rp-body {
        padding-top: 16px;
    }
}

/* ── Responsive: tablets portrait (576px – 767px) ───────────── */
@media (max-width: 767px) and (min-width: 576px) {
    .bo-login-page {
        padding: 20px 16px;
        align-items: flex-start;
    }
    .bo-login-card-outer {
        border-radius: 12px;
    }
    .bo-login-row {
        flex-wrap: wrap !important;
    }
    .bo-login-left {
        display: none !important;
    }
    .bo-login-right {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 36px 40px 0;
    }
    .bo-rp-body {
        padding-top: 16px;
        max-width: 100%;
    }
    .bo-login-form-title {
        font-size: 1.2rem;
    }
    .bo-login-form-sub {
        font-size: 1rem;
    }
}

/* ── Responsive: mobile (max 575px) ─────────────────────────── */
@media (max-width: 575px) {
    .bo-login-page {
        padding: 0;
        align-items: flex-start;
    }
    .bo-login-wrapper {
        width: 100%;
        max-width: 100%;
    }
    .bo-login-card-outer {
        border-radius: 0;
        box-shadow: none;
    }
    .bo-login-row {
        flex-wrap: wrap !important;
    }
    .bo-login-left {
        display: none !important;
    }
    .bo-login-right {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 40px 24px 0;
        min-height: 100vh;
    }
    .bo-rp-header {
        margin-bottom: 10px;
    }
    .bo-login-logo-img {
        width: 120px;
    }
    .bo-rp-body {
        padding-top: 20px;
        max-width: 100%;
    }
    .bo-login-form-title {
        font-size: 1.2rem;
    }
    .bo-login-form-sub {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .bo-form-control {
        height: 44px !important;
        font-size: 1rem !important;
    }
    .bo-btn-login {
        padding: 12px !important;
        font-size: 1rem !important;
    }
    .bo-rp-footer {
        margin-top: 20px;
    }
}

/* Dropdown Menu Styles */
#accountDropdownMenu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    min-width: 250px !important;
    background: white !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    z-index: 2000 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    transition: all 0.2s ease !important;
    pointer-events: none !important;
}

#accountDropdownMenu[style*="visibility: visible"] {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: auto !important;
    right: 0 !important;
    min-width: 250px !important;
    margin-top: 0.5rem !important;
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    z-index: 1000 !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.dropdown-menu.show {
    display: block !important;
}

.dropdown-menu-end {
    right: 0 !important;
    left: auto !important;
}

.dropdown-item {
    display: block !important;
    width: 100% !important;
    padding: 10px 16px !important;
    clear: both !important;
    color: #333333 !important;
    text-align: left !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    background-color: transparent !important;
    border: 0 !important;
    cursor: pointer !important;
    font-size: 14px !important;
    transition: background-color 0.2s ease !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #f5f5f5 !important;
    color: #111827 !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #e3f2fd !important;
    color: #1976d2 !important;
}

.dropdown-divider {
    height: 0 !important;
    margin: 0.5rem 0 !important;
    overflow: hidden !important;
    border-top: 1px solid #e5e7eb !important;
}

.nav-item.dropdown {
    position: relative !important;
}

/* Ensure navbar doesn't clip dropdown */
.navbar {
    overflow: visible !important;
}

.main-header.navbar {
    overflow: visible !important;
    position: relative !important;
    z-index: 100 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* Button styles for dropdown trigger */
.dropdown-toggle {
    display: flex !important;
    align-items: center !important;
}

.dropdown-toggle::after {
    display: none !important;
}

/* Avatar styling */
.nav-link img {
    object-fit: cover !important;
}

/* Ensure dropdown items are properly styled */
.dropdown-menu li {
    list-style: none !important;
}

.dropdown-menu li a,
.dropdown-menu li span {
    display: block !important;
}

.error {
    color: red;
  }

   /* image upload css */
.btn_upload {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  color: #fff;
  background-color: #2a72d4;
  border: 1px solid #166b8a;
  padding: 5px 10px;
}

.btn_upload:hover,
.btn_upload:focus {
  background-color: #7ca9e6;
}

.yes {
  display: flex;
  align-items: flex-start;
  margin-top: 10px !important;
}

.btn_upload input {
  cursor: pointer;
  height: 100%;
  position: absolute;
  filter: alpha(opacity=1);
  -moz-opacity: 0;
  opacity: 0;
}

.it {
  height: 20%;
  margin-left: 10px;
  width: 20%;
}

.rmv0, .rmv1, .rmv2, .rmv3 {
  cursor: pointer;
  color: #fff;
  border-radius: 30px;
  border: 1px solid #fff;
  display: inline-block !important;
  background: rgba(255, 0, 0, 1);
  margin: -5px -10px;
}

.rmv0:hover, .rmv1:hover, .rmv2:hover, .rmv3:hover {
  background: rgba(255, 0, 0, 0.5);
}

/* image upload css */ 

.displyNon_img {
  display: none;
}

.upload_img{ width: 200px; position: relative; margin: 20px 0;}
.upload_img img{ width: 100%; border: 1px solid #ccc; padding: 7px; border-radius: 7px;}
.upload_img .remove_img{ width: 24px; height: 24px; background-color: red; border-radius: 15px; border: 0; color: #fff;
  text-align: center; font-size: 14px; font-weight: 700; line-height: 24px; position: absolute; right: -12px; top: -12px;}

/* ============================================================= 
   KPI BOXES - GLOBAL CLASSES
   ============================================================= */

/* KPI Container - Grid layout for KPI cards */
.kpi-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    padding: 20px 24px;
    background: #f9fafb;
}

/* Base KPI Card - Common styles for all KPI cards */
.kpi-card {
    background: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    border-left: 4px solid;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.kpi-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

/* KPI Header - Label and Icon */
.kpi-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.kpi-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.kpi-icon {
    font-size: 16px;
}

/* KPI Value - Large number display */
.kpi-value {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

/* KPI Subtext - Time period or additional info */
.kpi-subtext {
    font-size: 11px;
    color: #9ca3af;
}

/* ─── KPI Color Variants ─────────────────────────────────────── */

/* Students - Blue */
.kpi-card.kpi-students {
    border-left-color: #0284c7;
}

.kpi-card.kpi-students .kpi-label {
    color: #6b7280;
}

.kpi-card.kpi-students .kpi-icon {
    color: #0284c7;
}

/* Company Owners - Green */
.kpi-card.kpi-company-owners {
    border-left-color: #16a34a;
}

.kpi-card.kpi-company-owners .kpi-label {
    color: #6b7280;
}

.kpi-card.kpi-company-owners .kpi-icon {
    color: #16a34a;
}

/* Independent Drivers - Amber */
.kpi-card.kpi-independent-drivers {
    border-left-color: #ca8a04;
}

.kpi-card.kpi-independent-drivers .kpi-label {
    color: #6b7280;
}

.kpi-card.kpi-independent-drivers .kpi-icon {
    color: #ca8a04;
}

/* Company Drivers - Red */
.kpi-card.kpi-company-drivers {
    border-left-color: #dc2626;
}

.kpi-card.kpi-company-drivers .kpi-label {
    color: #6b7280;
}

.kpi-card.kpi-company-drivers .kpi-icon {
    color: #dc2626;
}

/* House Owners - Purple */
.kpi-card.kpi-house-owners {
    border-left-color: #7c3aed;
}

.kpi-card.kpi-house-owners .kpi-label {
    color: #6b7280;
}

.kpi-card.kpi-house-owners .kpi-icon {
    color: #7c3aed;
}

/* ============================================================= 
   TABS NAVIGATION - GLOBAL CLASSES
   ============================================================= */

/* Tabs Container */
.tabs-container {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
    align-items: center;
}

/* Tab Button Base Styles */
.tab-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.tab-btn:hover:not(.active) {
    background: #e5e7eb;
    color: #4b5563;
    border-color: #d1d5db;
}

/* Active Tab State */
.tab-btn.active {
    background: #fff;
    color: #111827;
    border-color: #d1d5db;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* ─── Tab Panes ───────────────────────────────────────────────── */

.tabs-content {
    width: 100%;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================================= 
   MODAL STYLES - REUSABLE CLASSES
   ============================================================= */

/* Modal Side Panel (User Details Modal) */
.modal-side-panel {
    margin: 0;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 400px;
    max-width: 100%;
    height: 100vh;
}

.modal-side-panel .modal-content {
    border-radius: 0;
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
}

.modal-side-panel .modal-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 24px 16px;
}

.modal-side-panel .modal-title {
    font-size: 16px;
    font-weight: 600;
}

.modal-side-panel .modal-body {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}

/* Information Section */
.info-section {
    margin-bottom: 24px;
}

.info-section-title {
    font-weight: 600;
    color: #111827;
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    /* border-bottom: 1px solid #f3f4f6; */
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #6b7280;
    font-size: 13px;
}

.info-value {
    color: #111827;
    font-size: 13px;
    font-weight: 500;
}

/* Account Status Section */
.account-status-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
}

.account-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.account-status-info h6 {
    font-weight: 600;
    color: #111827;
    font-size: 14px;
    margin-bottom: 4px;
}

.account-status-info p {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 0;
}

.account-status-toggle {
    margin-bottom: 0;
}

.account-status-toggle .form-check-input {
    width: 2.5em;
    height: 1.3em;
    cursor: default;
}

/* Profile Picture Section */
.profile-picture {
    text-align: center;
    margin-bottom: 24px;
}

.profile-picture img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Edit Button */
.modal-body .btn-outline-secondary {
    border-color: #d1d5db;
    color: #6b7280;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-body .btn-outline-secondary:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
    color: #374151;
}
/* Edit Form Styling */

.edit-form-section {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.edit-form-section:last-of-type {
    border-bottom: none;
}

.edit-section-title {
    font-weight: 600;
    font-size: 14px;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.edit-form-group {
    margin-bottom: 16px;
}

.edit-form-label {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: #374151;
    margin-bottom: 6px;
}

.edit-form-label .text-danger {
    color: #ef4444;
    margin-left: 2px;
}

.edit-form-input {
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background-color: #fff;
    color: #111827;
    transition: all 0.3s ease;
}

.edit-form-input:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: #f0f9ff;
}

.edit-form-input::placeholder {
    color: #9ca3af;
}

.edit-form-input:disabled {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.form-check-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-check-label {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
    margin-left: 8px;
    cursor: pointer;
}

.form-text {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

.form-text.text-muted {
    color: #9ca3af;
}

.edit-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.edit-form-actions .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.edit-form-actions .btn-outline-secondary {
    background-color: #fff;
    border: 1px solid #d1d5db;
    color: #374151;
}

.edit-form-actions .btn-outline-secondary:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
    color: #111827;
}

.edit-form-actions .btn-primary {
    background-color: #3b82f6;
    border: 1px solid #3b82f6;
    color: #fff;
}

.edit-form-actions .btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}

.edit-form-actions .btn-primary:disabled {
    background-color: #9ca3af;
    border-color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.7;
}