body.login_admin,
body.customers_login {
    min-height: 100vh;
    position: relative;
    /* Remove themed background image; keep a neutral base color instead */
    background: #f5f5f5;
}

body.login_admin .authentication-form-wrapper,
body.login_admin .company-logo,
body.customers_login .panel_s,
body.customers_login .col-md-4,
body.customers_login .col-md-4 *,
body.customers_login .col-md-4 .panel-body {
    position: relative;
    z-index: 1;
}

body.customers_login .panel_s {
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

body.login_admin .tw-bg-white {
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.admin #header {
    position: relative;
    z-index: 1400;
}

.header-profile-toggle {
    display: block;
    padding: 10px !important;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
}

.header-profile-toggle:hover,
.header-profile-toggle:focus {
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.profile-dropdown {
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
    padding: 8px 0;
}

.profile-dropdown li > a {
    padding: 10px 18px;
    display: block;
    color: #0f172a;
}

.profile-dropdown li > a:hover {
    background: rgba(15, 23, 42, 0.05);
    color: #0f172a;
}
.bm-mega-list > li > a:hover {
    color: #00b14f;
}

.bm-mega-list ul {
    list-style: disc;
    margin: 4px 0 4px 18px;
    padding: 0;
}

.bm-mega-list ul li a {
    font-weight: 400;
    color: #475569;
    font-size: 13px;
}

.bm-mega-list ul li a:hover {
    color: #00b14f;
}

@media (max-width: 1199px) {
    #bm-top-nav-wrapper {
        display: none !important;
    }
    body.bm-top-nav-active #menu {
        display: block !important;
    }
    body.bm-top-nav-active #wrapper {
        margin-left: 220px !important;
    }
}

/* ============================================
   Home Client Style for Estimate & Invoice Forms
   ============================================ */

/* Main Panel Container - Card Style */
.accounting-template.estimate .panel_s,
.accounting-template.invoice .panel_s {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    margin-bottom: 20px;
}

.accounting-template.estimate .panel-body,
.accounting-template.invoice .panel-body {
    padding: 24px;
}

/* Form Groups - Spacing and Typography */
.accounting-template.estimate .form-group,
.accounting-template.invoice .form-group {
    margin-bottom: 20px;
}

.accounting-template.estimate .form-group label,
.accounting-template.invoice .form-group label,
.accounting-template.estimate .control-label,
.accounting-template.invoice .control-label {
    font-weight: 600;
    color: #0f172a;
    font-size: 14px;
    margin-bottom: 8px;
}

/* Input Fields - Rounded, Clean Borders */
.accounting-template.estimate .form-control,
.accounting-template.invoice .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    /* padding: 10px 14px; */
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    transition: all 0.2s ease;
}

.accounting-template.estimate .form-control:focus,
.accounting-template.invoice .form-control:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    outline: none;
}

.accounting-template.estimate textarea.form-control,
.accounting-template.invoice textarea.form-control {
    min-height: 80px;
    resize: vertical;
}

/* Input Groups */
.accounting-template.estimate .input-group-addon,
.accounting-template.invoice .input-group-addon {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #0f172a;
    font-weight: 600;
}

.accounting-template.estimate .input-group .form-control:first-child,
.accounting-template.invoice .input-group .form-control:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.accounting-template.estimate .input-group .form-control:last-child,
.accounting-template.invoice .input-group .form-control:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Primary Buttons - Green Style */
.accounting-template.estimate .btn-primary,
.accounting-template.invoice .btn-primary,
.accounting-template.estimate .btn-tr.btn-primary,
.accounting-template.invoice .btn-tr.btn-primary {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.accounting-template.estimate .btn-primary:hover,
.accounting-template.invoice .btn-primary:hover,
.accounting-template.estimate .btn-tr.btn-primary:hover,
.accounting-template.invoice .btn-tr.btn-primary:hover {
    background: #16a34a;
    border-color: #16a34a;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.3);
    transform: translateY(-1px);
}

.accounting-template.estimate .btn-primary:active,
.accounting-template.invoice .btn-primary:active,
.accounting-template.estimate .btn-tr.btn-primary:active,
.accounting-template.invoice .btn-tr.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

/* Success Buttons */
.accounting-template.estimate .btn-success,
.accounting-template.invoice .btn-success {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.accounting-template.estimate .btn-success:hover,
.accounting-template.invoice .btn-success:hover {
    background: #16a34a;
    border-color: #16a34a;
}

/* Info Buttons */
.accounting-template.estimate .btn-info,
.accounting-template.invoice .btn-info {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.accounting-template.estimate .btn-info:hover,
.accounting-template.invoice .btn-info:hover {
    background: #2563eb;
    border-color: #2563eb;
}

/* Default/Secondary Buttons */
.accounting-template.estimate .btn-default,
.accounting-template.invoice .btn-default {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.accounting-template.estimate .btn-default:hover,
.accounting-template.invoice .btn-default:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}

/* Danger Buttons */
.accounting-template.estimate .btn-danger,
.accounting-template.invoice .btn-danger {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.accounting-template.estimate .btn-danger:hover,
.accounting-template.invoice .btn-danger:hover {
    background: #dc2626;
    border-color: #dc2626;
}

/* Button Groups */
.accounting-template.estimate .btn-group .btn,
.accounting-template.invoice .btn-group .btn {
    margin-right: 8px;
}

.accounting-template.estimate .btn-group .btn:last-child,
.accounting-template.invoice .btn-group .btn:last-child {
    margin-right: 0;
}

/* Select/Dropdown Styling */
.accounting-template.estimate .selectpicker,
.accounting-template.invoice .selectpicker,
.accounting-template.estimate .bootstrap-select .dropdown-toggle,
.accounting-template.invoice .bootstrap-select .dropdown-toggle {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #0f172a !important;
}

.accounting-template.estimate .bootstrap-select .filter-option,
.accounting-template.invoice .bootstrap-select .filter-option,
.accounting-template.estimate .bootstrap-select .filter-option-inner,
.accounting-template.invoice .bootstrap-select .filter-option-inner {
    color: #0f172a !important;
}

.accounting-template.estimate .bootstrap-select .dropdown-toggle .filter-option,
.accounting-template.invoice .bootstrap-select .dropdown-toggle .filter-option {
    color: #0f172a !important;
}

.accounting-template.estimate .bootstrap-select .dropdown-toggle:focus,
.accounting-template.invoice .bootstrap-select .dropdown-toggle:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    outline: none;
}

/* Ensure select text is visible in all states */
.accounting-template.estimate select.form-control,
.accounting-template.invoice select.form-control,
.accounting-template.estimate .bootstrap-select,
.accounting-template.invoice .bootstrap-select {
    color: #0f172a !important;
}

.accounting-template.estimate .bootstrap-select.btn .filter-option,
.accounting-template.invoice .bootstrap-select.btn .filter-option {
    color: #0f172a !important;
}

/* Address Blocks */
.accounting-template.estimate address,
.accounting-template.invoice address {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px;
    margin: 0;
    font-style: normal;
    line-height: 1.6;
    color: #475569;
}

.accounting-template.estimate address .bold,
.accounting-template.invoice address .bold {
    font-weight: 700;
    color: #0f172a;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Edit Icon for Address */
.accounting-template.estimate .edit_shipping_billing_info,
.accounting-template.invoice .edit_shipping_billing_info {
    color: #22c55e;
    font-size: 16px;
    transition: all 0.2s ease;
}

.accounting-template.estimate .edit_shipping_billing_info:hover,
.accounting-template.invoice .edit_shipping_billing_info:hover {
    color: #16a34a;
    transform: scale(1.1);
}

/* Goods Table Styling */
.accounting-template.estimate .goods-table-wrapper,
.accounting-template.invoice .goods-table-wrapper {
    margin: 20px 0;
}

.accounting-template.estimate .goods-table-wrapper .btn-group,
.accounting-template.invoice .goods-table-wrapper .btn-group {
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.accounting-template.estimate .goods-table-wrapper .btn-group .btn,
.accounting-template.invoice .goods-table-wrapper .btn-group .btn {
    margin-right: 0;
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 16px;
    transition: all 0.2s ease;
}

.accounting-template.estimate .goods-table-wrapper .btn-sm,
.accounting-template.invoice .goods-table-wrapper .btn-sm {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 8px;
}

.accounting-template.estimate .table.items,
.accounting-template.invoice .table.items {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.accounting-template.estimate .table.items thead th,
.accounting-template.invoice .table.items thead th {
    background: #22c55e;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 12px 14px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.accounting-template.estimate .table.items tbody td,
.accounting-template.invoice .table.items tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.accounting-template.estimate .table.items tbody tr:last-child td,
.accounting-template.invoice .table.items tbody tr:last-child td {
    border-bottom: none;
}

.accounting-template.estimate .table.items tbody tr:hover,
.accounting-template.invoice .table.items tbody tr:hover {
    background: #f8fafc;
}

.accounting-template.estimate .table.items tfoot td,
.accounting-template.invoice .table.items tfoot td {
    background: #f8fafc;
    font-weight: 700;
    color: #0f172a;
    padding: 14px;
    border-top: 2px solid #e2e8f0;
}

/* Totals Table */
.accounting-template.estimate .table.text-right,
.accounting-template.invoice .table.text-right {
    border: none;
    margin-top: 20px;
}

.accounting-template.estimate .table.text-right td,
.accounting-template.invoice .table.text-right td {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.accounting-template.estimate .table.text-right tr:last-child td,
.accounting-template.invoice .table.text-right tr:last-child td {
    border-bottom: none;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    padding-top: 16px;
}

.accounting-template.estimate .table.text-right .bold,
.accounting-template.invoice .table.text-right .bold {
    font-weight: 700;
    color: #0f172a;
}

/* Radio Buttons */
.accounting-template.estimate .radio,
.accounting-template.invoice .radio {
    margin-right: 16px;
}

.accounting-template.estimate .radio input[type="radio"]:checked + label,
.accounting-template.invoice .radio input[type="radio"]:checked + label {
    color: #22c55e;
    font-weight: 600;
}

/* Checkboxes */
.accounting-template.estimate .checkbox,
.accounting-template.invoice .checkbox {
    margin-bottom: 12px;
}

/* Tags Input */
.accounting-template.estimate .tagsinput,
.accounting-template.invoice .tagsinput {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px;
    background: #fff;
}

.accounting-template.estimate .tagsinput .tag,
.accounting-template.invoice .tagsinput .tag {
    background: #22c55e;
    color: #fff;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    margin: 4px;
}

/* HR Separators */
.accounting-template.estimate .hr-panel-separator,
.accounting-template.invoice .hr-panel-separator {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 24px 0;
}

/* Bottom Toolbar */
.accounting-template.estimate .btn-bottom-toolbar,
.accounting-template.invoice .btn-bottom-toolbar {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 20px 24px;
    margin-top: 20px;
    border-radius: 0 0 16px 16px;
}

/* Dropdown Menus */
.accounting-template.estimate .dropdown-menu,
.accounting-template.invoice .dropdown-menu {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    padding: 8px 0;
}

.accounting-template.estimate .dropdown-menu li a,
.accounting-template.invoice .dropdown-menu li a {
    padding: 10px 18px;
    color: #0f172a;
    transition: all 0.2s ease;
}

.accounting-template.estimate .dropdown-menu li a:hover,
.accounting-template.invoice .dropdown-menu li a:hover {
    background: #f8fafc;
    color: #22c55e;
}

/* Modal Styling */
.accounting-template.estimate .modal-content,
.accounting-template.invoice .modal-content {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.accounting-template.estimate .modal-header,
.accounting-template.invoice .modal-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 24px;
    border-radius: 16px 16px 0 0;
}

.accounting-template.estimate .modal-body,
.accounting-template.invoice .modal-body {
    padding: 24px;
}

.accounting-template.estimate .modal-footer,
.accounting-template.invoice .modal-footer {
    border-top: 1px solid #e2e8f0;
    padding: 20px 24px;
    border-radius: 0 0 16px 16px;
}

/* Show Quantity As Radio Buttons */
.accounting-template.estimate .show_quantity_as_wrapper,
.accounting-template.invoice .show_quantity_as_wrapper {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.accounting-template.estimate .show_quantity_as_wrapper span,
.accounting-template.invoice .show_quantity_as_wrapper span {
    font-weight: 600;
    color: #0f172a;
    margin-right: 12px;
}

/* Items Section */
.accounting-template.estimate .home-client-items-section,
.accounting-template.invoice .home-client-items-section {
    background: #fff;
}

/* Bottom Toolbar Enhancement */
.accounting-template.estimate .home-client-toolbar,
.accounting-template.invoice .home-client-toolbar {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 20px 24px;
    margin-top: 20px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.04);
}

/* Input Group Enhancements */
.accounting-template.estimate .input-group .form-control,
.accounting-template.invoice .input-group .form-control {
    border-radius: 10px;
}

/* Select Placeholder Styling */
.accounting-template.estimate .select-placeholder,
.accounting-template.invoice .select-placeholder {
    margin-bottom: 20px;
}

/* Custom Fields Styling */
.accounting-template.estimate .custom-field,
.accounting-template.invoice .custom-field {
    margin-bottom: 20px;
}

/* Textarea Styling */
.accounting-template.estimate textarea.form-control,
.accounting-template.invoice textarea.form-control {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 12px 14px;
}

.accounting-template.estimate textarea.form-control:focus,
.accounting-template.invoice textarea.form-control:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    outline: none;
}

/* Discount Module Styling - Home Client Style */
.accounting-template.estimate .ppi-discount-type,
.accounting-template.invoice .ppi-discount-type,
.accounting-template.estimate .ppi-discount-type.form-control,
.accounting-template.invoice .ppi-discount-type.form-control,
.accounting-template.estimate .ppi-discount-type.input-sm,
.accounting-template.invoice .ppi-discount-type.input-sm {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #0f172a !important;
    font-size: 13px;
}

.accounting-template.estimate .ppi-line-discount,
.accounting-template.invoice .ppi-line-discount,
.accounting-template.estimate .ppi-line-discount-amount,
.accounting-template.invoice .ppi-line-discount-amount,
.accounting-template.estimate .ppi-line-discount.form-control,
.accounting-template.invoice .ppi-line-discount.form-control,
.accounting-template.estimate .ppi-line-discount-amount.form-control,
.accounting-template.invoice .ppi-line-discount-amount.form-control,
.accounting-template.estimate .ppi-line-discount.input-sm,
.accounting-template.invoice .ppi-line-discount.input-sm,
.accounting-template.estimate .ppi-line-discount-amount.input-sm,
.accounting-template.invoice .ppi-line-discount-amount.input-sm {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #0f172a;
    font-size: 13px;
}

.accounting-template.estimate .ppi-line-discount:focus,
.accounting-template.invoice .ppi-line-discount:focus,
.accounting-template.estimate .ppi-line-discount-amount:focus,
.accounting-template.invoice .ppi-line-discount-amount:focus,
.accounting-template.estimate .ppi-discount-type:focus,
.accounting-template.invoice .ppi-discount-type:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    outline: none;
}

.accounting-template.estimate .ppi-tax-mode,
.accounting-template.invoice .ppi-tax-mode,
.accounting-template.estimate .ppi-tax-mode.form-control,
.accounting-template.invoice .ppi-tax-mode.form-control,
.accounting-template.estimate .ppi-tax-mode.input-sm,
.accounting-template.invoice .ppi-tax-mode.input-sm {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #0f172a !important;
    font-size: 13px;
}

.accounting-template.estimate .ppi-tax-mode:focus,
.accounting-template.invoice .ppi-tax-mode:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    outline: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .accounting-template.estimate .panel-body,
    .accounting-template.invoice .panel-body {
        padding: 16px;
    }
    
    .accounting-template.estimate .table.items thead th,
    .accounting-template.invoice .table.items thead th {
        font-size: 11px;
        padding: 10px 8px;
    }
    
    .accounting-template.estimate .table.items tbody td,
    .accounting-template.invoice .table.items tbody td {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .accounting-template.estimate .btn-bottom-toolbar,
    .accounting-template.invoice .btn-bottom-toolbar {
        padding: 16px;
    }
    
    .accounting-template.estimate .goods-table-wrapper .btn-group,
    .accounting-template.invoice .goods-table-wrapper .btn-group {
        flex-direction: column;
    }
    
    .accounting-template.estimate .goods-table-wrapper .btn-group .btn,
    .accounting-template.invoice .goods-table-wrapper .btn-group .btn {
        width: 100%;
    }
}

/* ============================================
   Home Client Style for Package Edit Page
   ============================================ */

/* Main Panel Container - Card Style */
.package-edit-wrapper .panel_s {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    margin-bottom: 20px;
}

.package-edit-wrapper .panel-body {
    padding: 24px;
}

/* Form Groups - Spacing and Typography */
.package-edit-wrapper .form-group {
    margin-bottom: 20px;
}

.package-edit-wrapper .form-group label,
.package-edit-wrapper .control-label {
    font-weight: 600;
    color: #0f172a;
    font-size: 14px;
    margin-bottom: 8px;
}

/* Input Fields - Rounded, Clean Borders */
.package-edit-wrapper .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: #0f172a;
    background: #fff;
    transition: all 0.2s ease;
}

.package-edit-wrapper .form-control:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    outline: none;
}

.package-edit-wrapper .input-sm {
    padding: 8px 12px;
    font-size: 13px;
}

/* Select/Dropdown Styling */
.package-edit-wrapper .selectpicker,
.package-edit-wrapper .bootstrap-select .dropdown-toggle {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: #0f172a !important;
}

.package-edit-wrapper .bootstrap-select .filter-option,
.package-edit-wrapper .bootstrap-select .filter-option-inner {
    color: #0f172a !important;
}

.package-edit-wrapper .bootstrap-select .dropdown-toggle:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    outline: none;
}

/* Primary Buttons - Green Style */
.package-edit-wrapper .btn-primary {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.package-edit-wrapper .btn-primary:hover {
    background: #16a34a;
    border-color: #16a34a;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.3);
    transform: translateY(-1px);
}

.package-edit-wrapper .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

/* Default/Secondary Buttons */
.package-edit-wrapper .btn-default {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.package-edit-wrapper .btn-default:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}

/* Danger Buttons */
.package-edit-wrapper .btn-danger {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.package-edit-wrapper .btn-danger:hover {
    background: #dc2626;
    border-color: #dc2626;
}

/* Small Buttons */
.package-edit-wrapper .btn-sm {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 8px;
}

.package-edit-wrapper .btn-xs {
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 6px;
}

/* Table Styling */
.package-edit-wrapper .table {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.package-edit-wrapper .table thead th {
    background: #22c55e;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 12px 14px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.package-edit-wrapper .table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.package-edit-wrapper .table tbody tr:last-child td {
    border-bottom: none;
}

.package-edit-wrapper .table tbody tr:hover {
    background: #f8fafc;
}

.package-edit-wrapper .table-bordered {
    border: 1px solid #e2e8f0;
}

.package-edit-wrapper .table-bordered th,
.package-edit-wrapper .table-bordered td {
    border: 1px solid #e2e8f0;
}

/* Headings */
.package-edit-wrapper h4,
.package-edit-wrapper h5 {
    font-weight: 700;
    color: #0f172a;
}

.package-edit-wrapper h4 {
    font-size: 20px;
}

.package-edit-wrapper h5 {
    font-size: 16px;
}

/* HR Separators */
.package-edit-wrapper .hr-panel-heading {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 20px 0;
}

/* Buttons Container */
.package-edit-wrapper ._buttons {
    margin-bottom: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .package-edit-wrapper .panel-body {
        padding: 16px;
    }
    
    .package-edit-wrapper .table thead th {
        font-size: 11px;
        padding: 10px 8px;
    }
    
    .package-edit-wrapper .table tbody td {
        padding: 10px 8px;
        font-size: 13px;
    }
}