* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #e5e9ed;
            height: 100vh;
            /* overflow: hidden; */
            display: flex;
			overflow-y: auto !important;
        }

        /* Left Sidebar Navigation */
        .sidebar {
            width: 250px;
            background-color: #0d1829;
            color: white;
            position: fixed;
            height: 100vh;
            overflow-y: auto;
            z-index: 1000;
        }

        .sidebar-header {
            padding: 20px;
            border-bottom: 1px solid #1a2436;
        }

        .sidebar h2 {
            font-size: 20px;
            font-weight: 500;
            text-align: center;
            color: white;
        }

        .sidebar ul {
            list-style: none;
            padding: 20px 0;
        }

        .sidebar li {
            margin: 0;
        }

        .sidebar a {
            display: block;
            padding: 15px 20px;
            color: #8b95a5;
            text-decoration: none;
            transition: all 0.2s;
            border-left: 3px solid transparent;
            font-size: 14px;
        }

        .sidebar a:hover {
            background-color: #1a2436;
            color: white;
            border-left-color: #3b5998;
        }

        .sidebar a.active {
            background-color: #1a2436;
            color: white;
            border-left-color: #3b5998;
        }

        /* Main Content Area */
        .main-wrapper {
            margin-left: 250px;
            flex: 1;
            display: flex;
            flex-direction: column;
            height: 100vh;
        }

        /* Top Header Bar */
        .top-header {
            background: #0d1829;
            height: 50px;
            display: flex;
            align-items: center;
            padding: 0 20px;
            border-bottom: 1px solid #1a2436;
        }

        .top-header-title {
            color: white;
            font-size: 14px;
            font-weight: 400;
        }

        /* Progress Meter */
        .progress-meter {
            background: white;
            padding: 30px 60px;
            border-bottom: 2px solid #e5e9ed;
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .progress-line {
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 4px;
            background: #e5e9ed;
            z-index: 1;
        }

        .progress-line-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: #3b5998;
            transition: width 0.4s ease;
            z-index: 2;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 3;
        }

        .step-dot {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e5e9ed;
            border: 4px solid white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #6c757d;
            transition: all 0.3s;
        }

        .step.completed .step-dot {
            background: #28a745;
            color: white;
        }

        .step.active .step-dot {
            background: #3b5998;
            color: white;
            transform: scale(1.1);
        }

        .step-label {
            margin-top: 12px;
            font-size: 13px;
            color: #6c757d;
            font-weight: 500;
            text-align: center;
        }

        .step.completed .step-label,
        .step.active .step-label {
            color: #0d1829;
        }

        /* Main Content Section */
        .content-area {
            flex: 1;
            overflow-y: auto;
            background: white;
        }

        .wizard-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .phase-content {
            display: none;
        }

        .phase-content.active {
            display: block;
            animation: fadeIn 0.3s;
        }

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

        .phase-title {
            font-size: 28px;
            font-weight: 600;
            text-align: center;
            color: #0d1829;
            margin-bottom: 10px;
        }

        .phase-subtitle {
            font-size: 16px;
            text-align: center;
            color: #6c757d;
            margin-bottom: 40px;
        }

        .form-section-title {
            font-size: 18px;
            font-weight: 600;
            color: #0d1829;
            margin: 30px 0 20px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #e5e9ed;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 8px;
            color: #495057;
            font-size: 14px;
        }

      
		
		.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    background-color: #fff;
}


        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3b5998;
            box-shadow: 0 0 0 3px rgba(59, 89, 152, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-row .form-group {
            flex: 1;
        }

        /* Vehicle List */
        .vehicle-input-group {
            display: flex;
            gap: 10px;
            align-items: flex-end;
            margin-bottom: 15px;
        }

        .vehicle-input-group .form-group {
            flex: 1;
            margin-bottom: 0;
        }

        .btn-add {
            background: #28a745;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            height: 42px;
        }

        .btn-add:hover {
            background: #218838;
        }

        .vehicle-list {
            margin-top: 20px;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            background: #f8f9fa;
        }

        .vehicle-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            border-bottom: 1px solid #dee2e6;
            background: white;
        }

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

        .vehicle-name {
            font-weight: 500;
            color: #212529;
        }

        .btn-remove {
            background: #dc3545;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 3px;
            font-size: 12px;
            cursor: pointer;
        }

        .btn-remove:hover {
            background: #c82333;
        }

        .empty-vehicles {
            padding: 30px;
            text-align: center;
            color: #6c757d;
        }

        /* Buttons */
        .btn-container {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #e5e9ed;
        }

        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-secondary {
            background: #6c757d;
            color: white;
        }

        .btn-secondary:hover {
            background: #5a6268;
        }

        .btn-primary {
            background: #3b5998;
            color: white;
        }

        .btn-primary:hover {
            background: #2d4373;
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(59, 89, 152, 0.3);
        }

        .btn-primary:disabled {
            background: #95a5a6;
            cursor: not-allowed;
            transform: none;
        }

        /* Pricing Section Styles */
        .tab-navigation {
            background: #f8f9fa;
            border-bottom: 2px solid #dee2e6;
            padding: 0 20px;
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
        }

        .tab-button {
            background: transparent;
            border: none;
            padding: 12px 25px;
            font-size: 14px;
            font-weight: 500;
            color: #6c757d;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.2s;
            position: relative;
            top: 2px;
        }

        .tab-button:hover {
            color: #3b5998;
            background: white;
        }

        .tab-button.active {
            color: #3b5998;
            border-bottom-color: #3b5998;
            background: white;
        }

        .pricing-content {
            display: none;
        }

        .pricing-content.active {
            display: block;
        }

        .price-per-mile-view {
            display: flex;
            gap: 20px;
            min-height: 400px;
        }

        .zones-panel {
            width: 380px;
            background: white;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
        }

        .panel-header {
            background: #29354a;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            flex-shrink: 0;
        }

        .panel-title {
            color: white;
            font-size: 14px;
            font-weight: 500;
        }

        .add-button {
            background: #3b5998;
            border: none;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 2px;
            cursor: pointer;
            font-size: 16px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .add-button:hover {
            background: #2d4373;
        }

        .table-container {
            overflow: auto;
            flex: 1;
            max-height: 400px;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        .data-table thead {
            background: #f8f9fa;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .data-table thead th {
            padding: 10px 12px;
            text-align: left;
            font-size: 11px;
            font-weight: 600;
            color: #495057;
            border-bottom: 1px solid #dee2e6;
            white-space: nowrap;
        }

        .data-table tbody tr {
            border-bottom: 1px solid #e9ecef;
            cursor: pointer;
            transition: background 0.15s;
        }

        .data-table tbody tr:hover {
            background: #f8f9fa;
        }

        .data-table tbody tr.selected {
            background: #e7f3ff;
        }

        .data-table tbody td {
            padding: 8px 12px;
            font-size: 13px;
            color: #212529;
        }

        .name-cell {
            font-weight: 500;
        }

        .data-table input {
            width: 100%;
            padding: 5px 8px;
            border: 1px solid #ced4da;
            border-radius: 3px;
            font-size: 13px;
            background: white;
        }

        .data-table input:focus {
            outline: none;
            border-color: #80bdff;
            box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
        }

        .action-btn {
            background: #3b5998;
            border: none;
            color: white;
            padding: 4px 10px;
            border-radius: 3px;
            cursor: pointer;
            font-size: 11px;
            font-weight: 500;
        }

        .action-btn:hover {
            background: #2d4373;
        }

        .pricing-panel {
            flex: 1;
            background: white;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
        }

        .pricing-table-container {
            overflow: auto;
            flex: 1;
            max-height: 400px;
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        .pricing-table thead {
            background: #f8f9fa;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .pricing-table thead th {
            padding: 10px 12px;
            text-align: left;
            font-size: 11px;
            font-weight: 600;
            color: #495057;
            border-bottom: 1px solid #dee2e6;
            white-space: nowrap;
        }

        .pricing-table tbody tr {
            border-bottom: 1px solid #e9ecef;
        }

        .pricing-table tbody tr:hover {
            background: #f8f9fa;
        }

        .pricing-table tbody td {
            padding: 8px 12px;
            font-size: 13px;
        }

        .vehicle-name-cell {
            font-weight: 500;
            color: #212529;
            background: #f8f9fa;
        }

        .pricing-table input {
            width: 100%;
            padding: 5px 8px;
            border: 1px solid #ced4da;
            border-radius: 3px;
            font-size: 13px;
            background: white;
        }

        .pricing-table input:focus {
            outline: none;
            border-color: #80bdff;
            box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
        }

        .fixed-prices-view {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .fixed-locations-panel {
            background: white;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            max-height: 300px;
            display: flex;
            flex-direction: column;
        }

        .fixed-pricing-panel {
            background: white;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .success-box {
            background: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
            padding: 20px;
            border-radius: 4px;
            text-align: center;
            margin-bottom: 20px;
        }

        .success-box h3 {
            margin-bottom: 10px;
            font-size: 20px;
        }

        .data-summary {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            padding: 20px;
            margin-top: 20px;
        }

        .data-summary h4 {
            color: #0d1829;
            margin-bottom: 15px;
        }

        .data-item {
            display: flex;
            padding: 8px 0;
            border-bottom: 1px solid #e9ecef;
        }

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

        .data-label {
            font-weight: 600;
            color: #495057;
            min-width: 150px;
        }

        .data-value {
            color: #212529;
        }

        /* API Data Display */
        .api-data-container {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            padding: 20px;
            margin-top: 30px;
        }

        .api-data-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .api-data-header h4 {
            color: #0d1829;
            margin: 0;
        }

        .btn-copy-api {
            background: #28a745;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 13px;
            cursor: pointer;
        }

        .btn-copy-api:hover {
            background: #218838;
        }

        .api-data-display {
            background: #212529;
            color: #f8f9fa;
            padding: 15px;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            font-size: 12px;
            white-space: pre-wrap;
            word-wrap: break-word;
            max-height: 500px;
            overflow-y: auto;
        }
		
		
		
		/* Container */
.wrapper {
    height: auto !important;
    overflow: visible !important;
}
.container-custom {
    margin: 20px;
    padding: 10px;
}

/* Page Title */
.page-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
}

/* Card Styling */
.agent-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #e4e4e4;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Header */
.agent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agent-name {
    font-size: 22px;
    margin: 0;
    font-weight: bold;
}

.company-name {
    margin: 3px 0;
    color: #555;
}

.agent-link {
    color: #007bff;
    text-decoration: none;
}
.agent-link:hover {
    text-decoration: underline;
}

/* Status Badge */
.badge-active {
    background: #4CAF50;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 13px;
}

.badge-inactive {
    background: #999;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 13px;
}

/* Details */
.agent-details {
    margin: 20px 0;
}

/* Buttons */
.agent-buttons {
    display: flex;
    gap: 10px;
}

.agent-buttons button {
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    color: white;
}

/* Individual Button Colors */
.btn-red     { background: #e74c3c; }
.btn-blue    { background: #3498db; }
.btn-dark    { background: #494b51; }
.btn-teal    { background: #1abc9c; }
.btn-grey    { background: #bdc3c7; color: #333; }

.btn-red:hover  { background: #c0392b; }
.btn-blue:hover { background: #2980b9; }
.btn-dark:hover { background: #2f3236; }
.btn-teal:hover { background: #16a085; }
.btn-grey:hover { background: #aeb6bf; }


/* Dynamic Active/Inactive Buttons */
.btn-red {
    background: #e74c3c;
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
}
.btn-red:hover {
    background: #c0392b;
}

.btn-green {
    background: #2ecc71;
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
}
.btn-green:hover {
    background: #27ae60;
}
.modal{position:fixed;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.4);z-index:9999;}
.modal-content{background:#fff;padding:25px;width:600px;margin:5% auto;border-radius:10px;}
.close{float:right;font-size:22px;cursor:pointer;}

.logout-form {
    margin: 0;
    padding: 0;
}

.logout-button {
    background: none;
    border: none;
    color: inherit;          /* Match sidebar link color */
    font: inherit;           /* Match font size/style */
    padding: 22px;
    cursor: pointer;
    text-align: left;
    display: block;          /* Make it occupy full li width */
    width: 100%;
}
.logout-button:hover {
    text-decoration: underline; /* Optional hover effect like links */
}
