.vehicle_periodic-maintenance_dashboard-container {
    padding: 20px;
    margin: 0 auto;
}

/* Header */
.vehicle_periodic-maintenance_dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px 25px;
    background: rgba(59, 59, 65, 0.95);
    border-radius: 12px;
    border: 1px solid #3b3b41;
}

.vehicle_periodic-maintenance_dashboard-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.vehicle_periodic-maintenance_dashboard-new-btn {
    background: #797bf2;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle_periodic-maintenance_dashboard-new-btn:hover {
    background: #6b6ef0;
    transform: translateY(-1px);
}

/* Enhanced Filter Section */
.vehicle_periodic-maintenance_dashboard-filters {
    background: rgba(59, 59, 65, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #3b3b41;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 5;
    transition:height 0.4s ease;
}

.vehicle_periodic-maintenance_dashboard-filter-main {
    display: grid;
    grid-template-columns: 380px 200px 150px 120px 1fr;
    gap: 15px;
    /*margin-bottom: 15px;*/
}

.vehicle_periodic-maintenance_dashboard-filter-advanced {
    display: none;
    grid-template-columns: 200px 200px;
    gap: 15px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #3b3b41;
    animation: slideDown 0.3s ease;
}

.vehicle_periodic-maintenance_dashboard-filter-advanced.show {
    display: grid;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vehicle_periodic-maintenance_dashboard-filter-group {
    display: flex;
    flex-direction: column;
}

.vehicle_periodic-maintenance_dashboard-filter-label {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 600;
}

.vehicle_periodic-maintenance_dashboard-form-input,
.vehicle_periodic-maintenance_dashboard-form-select {
    padding: 12px 15px;
    border: 2px solid #3b3b41;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #323236;
    color: #fff;
}

.vehicle_periodic-maintenance_dashboard-form-input:focus,
.vehicle_periodic-maintenance_dashboard-form-select:focus {
    outline: none;
    border-color: #797bf2;
    box-shadow: 0 0 0 3px rgba(121, 123, 242, 0.2);
}

/* Custom Dropdown */
.vehicle_periodic-maintenance_dashboard-custom-dropdown {
    position: relative;
    width: 100%;
    min-width: 350px;
}

.vehicle_periodic-maintenance_dashboard-dropdown-selected {
    padding: 12px 15px;
    border: 2px solid #3b3b41;
    border-radius: 8px;
    background: #323236;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.vehicle_periodic-maintenance_dashboard-dropdown-selected:hover {
    border-color: #797bf2;
}

.vehicle_periodic-maintenance_dashboard-dropdown-icon {
    transition: transform 0.3s ease;
}

.vehicle_periodic-maintenance_dashboard-dropdown-selected.open .vehicle_periodic-maintenance_dashboard-dropdown-icon {
    transform: rotate(180deg);
}

.vehicle_periodic-maintenance_dashboard-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #3b3b41;
    border: 1px solid #4a4a51;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 999999;
    padding: 20px;
    margin-top: 5px;
    display: none;
    max-height: 600px;
    height: auto;
    overflow-y: auto;
    min-height: 400px;
    min-width: 350px;
}

.vehicle_periodic-maintenance_dashboard-dropdown-menu.show {
    display: block;
    animation: slideDown 0.3s ease;
}

.vehicle_periodic-maintenance_dashboard-dropdown-section {
    margin-bottom: 15px;
}

.vehicle_periodic-maintenance_dashboard-dropdown-section:last-child {
    margin-bottom: 0;
}

.vehicle_periodic-maintenance_dashboard-section-title {
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.vehicle_periodic-maintenance_dashboard-dropdown-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.vehicle_periodic-maintenance_dashboard-dropdown-option {
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(121, 123, 242, 0.1);
    color: #ccc;
    cursor: pointer;
    text-align: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.vehicle_periodic-maintenance_dashboard-dropdown-option:hover {
    background: rgba(121, 123, 242, 0.2);
    color: #fff;
}

.vehicle_periodic-maintenance_dashboard-dropdown-option.active {
    background: #797bf2;
    color: white;
    border-color: #6c6ff2;
}

.vehicle_periodic-maintenance_dashboard-date-range-inputs {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}

.vehicle_periodic-maintenance_dashboard-date-input {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #3b3b41;
    border-radius: 6px;
    background: #323236;
    color: #fff;
    font-size: 0.85rem;
}

.vehicle_periodic-maintenance_dashboard-date-input:focus {
    outline: none;
    border-color: #797bf2;
}

.vehicle_periodic-maintenance_dashboard-date-separator {
    color: #797bf2;
    font-weight: bold;
}

.vehicle_periodic-maintenance_dashboard-custom-date-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #4a4a51;
}

.vehicle_periodic-maintenance_dashboard-date-range-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.vehicle_periodic-maintenance_dashboard-range-label {
    font-size: 0.8rem;
    color: #ccc;
    min-width: 30px;
}

.vehicle_periodic-maintenance_dashboard-range-input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #3b3b41;
    border-radius: 6px;
    background: #323236;
    color: #fff;
    font-size: 0.8rem;
}

.vehicle_periodic-maintenance_dashboard-apply-custom-btn {
    width: 100%;
    padding: 10px;
    background: #797bf2;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vehicle_periodic-maintenance_dashboard-apply-custom-btn:hover {
    background: #6c6ff2;
}

.vehicle_periodic-maintenance_dashboard-filter-toggle {
    transition: transform 0.3s ease;
}

.vehicle_periodic-maintenance_dashboard-filter-toggle.active {
    transform: rotate(180deg);
}

.vehicle_periodic-maintenance_dashboard-btn-secondary {
    padding: 12px 20px;
    background: rgba(59, 59, 65, 0.8);
    color: #ccc;
    border: 1px solid #4a4a51;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle_periodic-maintenance_dashboard-btn-secondary:hover {
    background: #4a4a51;
    color: #fff;
    transform: translateY(-1px);
}

.vehicle_periodic-maintenance_dashboard-btn-primary {
    padding: 12px 20px;
    background: linear-gradient(135deg, #797bf2, #6c6ff2);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(121, 123, 242, 0.3);
}

.vehicle_periodic-maintenance_dashboard-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(121, 123, 242, 0.5);
}

/* Stats Grid */
.vehicle_periodic-maintenance_dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.vehicle_periodic-maintenance_dashboard-stat-card {
    background: rgba(59, 59, 65, 0.95);
    border: 1px solid #3b3b41;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: transform 0.2s;
}

.vehicle_periodic-maintenance_dashboard-stat-card:hover {
    transform: translateY(-2px);
}

.vehicle_periodic-maintenance_dashboard-stat-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    opacity: 0.6;
}

.vehicle_periodic-maintenance_dashboard-stat-title {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 8px;
}

.vehicle_periodic-maintenance_dashboard-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

/* Charts */
.vehicle_periodic-maintenance_dashboard-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.vehicle_periodic-maintenance_dashboard-chart-card {
    background: rgba(59, 59, 65, 0.95);
    border-radius: 12px;
    padding: 20px;
}

.VehicleMaintenancePeriods-body {
    margin: 10px;
}

.vehicle_periodic-maintenance_dashboard-chart-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.vehicle_periodic-maintenance_dashboard-chart-container {
    position: relative;
    height: 250px;
}

/* Table */
.vehicle_periodic-maintenance_dashboard-table-section {
    background: rgba(59, 59, 65, 0.95);
    border: 1px solid #3b3b41;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.vehicle_periodic-maintenance_dashboard-table-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.vehicle_periodic-maintenance_dashboard-table-wrapper {
    overflow-x: auto;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 8px;
}

.vehicle_periodic-maintenance_dashboard-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1200px;
}

.vehicle_periodic-maintenance_dashboard-table th {
    background: rgba(121, 123, 242, 0.1);
    color: #797bf2;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    border-bottom: 2px solid #3b3b41;
    position: sticky;
    top: 0;
}

.vehicle_periodic-maintenance_dashboard-table td {
    padding: 12px;
    border-bottom: 1px solid #3b3b41;
    font-size: 13px;
}

.vehicle_periodic-maintenance_dashboard-table tbody tr:hover {
    background: rgba(121, 123, 242, 0.05);
}

/* Badges */
.vehicle_periodic-maintenance_dashboard-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.vehicle_periodic-maintenance_dashboard-badge-success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.vehicle_periodic-maintenance_dashboard-badge-warning {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.vehicle_periodic-maintenance_dashboard-badge-danger {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Enhanced Modal */
.vehicle_periodic-maintenance_dashboard-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    overflow-y: auto;
}

.vehicle_periodic-maintenance_dashboard-modal-content {
    background: linear-gradient(135deg, #3b3b41, #323236);
    margin: 20px auto;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid #4a4a51;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.vehicle_periodic-maintenance_dashboard-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #797bf2, #6c6ff2, #10b981);
    border-radius: 20px 20px 0 0;
}

.vehicle_periodic-maintenance_dashboard-modal-header {
    padding: 30px;
    border-bottom: 1px solid #4a4a51;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(59, 59, 65, 0.3);
    border-radius: 20px 20px 0 0;
}

.vehicle_periodic-maintenance_dashboard-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vehicle_periodic-maintenance_dashboard-modal-title i {
    color: #797bf2;
    font-size: 24px;
}

.vehicle_periodic-maintenance_dashboard-close {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.vehicle_periodic-maintenance_dashboard-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: scale(1.1);
}

/* Tabbed Interface */
.vehicle_periodic-maintenance_dashboard-tabs {
    display: flex;
    background: rgba(32, 32, 36, 0.3);
    border-radius: 15px 15px 0 0;
    margin: 0 30px;
    margin-top: 30px;
    overflow: hidden;
    border: 1px solid rgba(121, 123, 242, 0.2);
}

.vehicle_periodic-maintenance_dashboard-tab {
    flex: 1;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vehicle_periodic-maintenance_dashboard-tab:hover {
    background: rgba(121, 123, 242, 0.1);
    color: #fff;
}

.vehicle_periodic-maintenance_dashboard-tab.active {
    background: linear-gradient(135deg, #797bf2, #6c6ff2);
    color: white;
    box-shadow: 0 4px 15px rgba(121, 123, 242, 0.3);
}

.vehicle_periodic-maintenance_dashboard-tab i {
    font-size: 16px;
}

.vehicle_periodic-maintenance_dashboard-tab-content {
    display: none;
    padding: 30px;
    animation: fadeIn 0.3s ease;
}

.vehicle_periodic-maintenance_dashboard-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vehicle_periodic-maintenance_dashboard-form-section {
    background: rgba(50, 50, 54, 0.4);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(121, 123, 242, 0.2);
    position: relative;
}

.vehicle_periodic-maintenance_dashboard-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #797bf2, #10b981);
    border-radius: 15px 15px 0 0;
}

.vehicle_periodic-maintenance_dashboard-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #4a4a51;
}

.vehicle_periodic-maintenance_dashboard-section-header i {
    color: #797bf2;
    font-size: 18px;
}

.vehicle_periodic-maintenance_dashboard-section-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.vehicle_periodic-maintenance_dashboard-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.vehicle_periodic-maintenance_dashboard-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vehicle_periodic-maintenance_dashboard-form-label {
    font-size: 14px;
    color: #ccc;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vehicle_periodic-maintenance_dashboard-form-label i {
    color: #797bf2;
    font-size: 12px;
}

.vehicle_periodic-maintenance_dashboard-form-input,
.vehicle_periodic-maintenance_dashboard-form-select {
    background: #323236;
    border: 2px solid #3b3b41;
    border-radius: 10px;
    padding: 12px 15px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.vehicle_periodic-maintenance_dashboard-form-input:focus,
.vehicle_periodic-maintenance_dashboard-form-select:focus {
    outline: none;
    border-color: #797bf2;
    box-shadow: 0 0 0 3px rgba(121, 123, 242, 0.2);
    transform: translateY(-1px);
}

.vehicle_periodic-maintenance_dashboard-vehicle-plate-input {
    position: relative;
}

.vehicle_periodic-maintenance_dashboard-plate-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #3b3b41;
    border: 1px solid #4a4a51;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.vehicle_periodic-maintenance_dashboard-plate-suggestion {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #4a4a51;
    transition: all 0.2s ease;
}

.vehicle_periodic-maintenance_dashboard-plate-suggestion:hover {
    background: rgba(121, 123, 242, 0.1);
}

.vehicle_periodic-maintenance_dashboard-plate-suggestion:last-child {
    border-bottom: none;
}

/* Enhanced Vehicle Selection */
.vehicle_periodic-maintenance_dashboard-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
    border: 2px solid #3b3b41;
    border-radius: 15px;
    padding: 25px;
    background: rgba(32, 32, 36, 0.5);
}

.vehicle_periodic-maintenance_dashboard-vehicle-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(59, 59, 65, 0.8), rgba(50, 50, 54, 0.6));
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.vehicle_periodic-maintenance_dashboard-vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #797bf2, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vehicle_periodic-maintenance_dashboard-vehicle-card:hover {
    background: linear-gradient(135deg, rgba(121, 123, 242, 0.15), rgba(16, 185, 129, 0.1));
    border-color: rgba(121, 123, 242, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(121, 123, 242, 0.2);
}

.vehicle_periodic-maintenance_dashboard-vehicle-card:hover::before {
    transform: scaleX(1);
}

.vehicle_periodic-maintenance_dashboard-vehicle-card.selected {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(121, 123, 242, 0.15));
    border-color: #10b981;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.vehicle_periodic-maintenance_dashboard-vehicle-card.selected::before {
    transform: scaleX(1);
    background: #10b981;
}

.vehicle_periodic-maintenance_dashboard-vehicle-card input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #10b981;
    cursor: pointer;
}

.vehicle_periodic-maintenance_dashboard-vehicle-info {
    flex: 1;
    cursor: pointer;
}

.vehicle_periodic-maintenance_dashboard-vehicle-plate {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle_periodic-maintenance_dashboard-vehicle-plate i {
    color: #797bf2;
    font-size: 14px;
}

.vehicle_periodic-maintenance_dashboard-vehicle-details {
    color: #ccc;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle_periodic-maintenance_dashboard-vehicle-badge {
    background: rgba(121, 123, 242, 0.2);
    color: #797bf2;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.vehicle_periodic-maintenance_dashboard-selected-count {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #797bf2, #6c6ff2);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    display: none;
    animation: slideDown 0.3s ease;
}

.vehicle_periodic-maintenance_dashboard-selected-count.show {
    display: block;
}

/* Enhanced Product Section */
.vehicle_periodic-maintenance_dashboard-product-section {
    background: rgba(32, 32, 36, 0.5);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #3b3b41;
}

.vehicle_periodic-maintenance_dashboard-product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #4a4a51;
}

.vehicle_periodic-maintenance_dashboard-product-header span {
    color: #ccc;
    font-size: 14px;
}

.vehicle_periodic-maintenance_dashboard-add-product-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.vehicle_periodic-maintenance_dashboard-add-product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.vehicle_periodic-maintenance_dashboard-product-item {
    display: grid;
    grid-template-columns: 1fr 1fr 100px 40px;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(59, 59, 65, 0.6), rgba(50, 50, 54, 0.4));
    border-radius: 12px;
    border: 1px solid rgba(121, 123, 242, 0.1);
    transition: all 0.3s ease;
}

.vehicle_periodic-maintenance_dashboard-product-item:hover {
    background: linear-gradient(135deg, rgba(121, 123, 242, 0.1), rgba(59, 59, 65, 0.6));
    border-color: rgba(121, 123, 242, 0.3);
    transform: translateY(-1px);
}

.vehicle_periodic-maintenance_dashboard-product-autocomplete {
    position: relative;
}

.vehicle_periodic-maintenance_dashboard-product-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #3b3b41;
    border: 1px solid #4a4a51;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.vehicle_periodic-maintenance_dashboard-product-suggestion {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #4a4a51;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vehicle_periodic-maintenance_dashboard-product-suggestion:hover {
    background: rgba(121, 123, 242, 0.1);
}

.vehicle_periodic-maintenance_dashboard-product-suggestion:last-child {
    border-bottom: none;
}

.vehicle_periodic-maintenance_dashboard-product-code {
    color: #797bf2;
    font-size: 12px;
    font-weight: 600;
}

.vehicle_periodic-maintenance_dashboard-remove-btn {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.vehicle_periodic-maintenance_dashboard-remove-btn:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: #ef4444;
    transform: scale(1.1);
}

.vehicle_periodic-maintenance_dashboard-modal-footer {
    padding: 25px 30px;
    border-top: 1px solid #4a4a51;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    background: rgba(59, 59, 65, 0.3);
    border-radius: 0 0 20px 20px;
}

.vehicle_periodic-maintenance_dashboard-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle_periodic-maintenance_dashboard-btn-primary {
    background: linear-gradient(135deg, #797bf2, #6c6ff2);
    color: white;
    box-shadow: 0 4px 15px rgba(121, 123, 242, 0.3);
}

.vehicle_periodic-maintenance_dashboard-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(121, 123, 242, 0.5);
}

.vehicle_periodic-maintenance_dashboard-btn-secondary {
    background: #4a4a51;
    color: #ccc;
    border: 1px solid #5a5a61;
}

.vehicle_periodic-maintenance_dashboard-btn-secondary:hover {
    background: #5a5a61;
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .vehicle_periodic-maintenance_dashboard-filter-main {
        grid-template-columns: 1fr 1fr 120px 120px;
        gap: 10px;
    }

    .vehicle_periodic-maintenance_dashboard-filter-advanced {
        grid-template-columns: 1fr 1fr;
    }

    .vehicle_periodic-maintenance_dashboard-vehicles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vehicle_periodic-maintenance_dashboard-charts {
        grid-template-columns: 1fr;
    }

    .vehicle_periodic-maintenance_dashboard-form-grid {
        grid-template-columns: 1fr;
    }

    .vehicle_periodic-maintenance_dashboard-header {
        flex-direction: column;
        gap: 15px;
    }

    .vehicle_periodic-maintenance_dashboard-filter-main {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .vehicle_periodic-maintenance_dashboard-filter-advanced {
        grid-template-columns: 1fr;
    }

    .vehicle_periodic-maintenance_dashboard-dropdown-menu {
        max-height: 300px;
        padding: 15px;
    }

    .vehicle_periodic-maintenance_dashboard-dropdown-options {
        grid-template-columns: 1fr 1fr;
    }

    .vehicle_periodic-maintenance_dashboard-tabs {
        flex-direction: column;
        margin: 0 15px;
        margin-top: 15px;
    }

    .vehicle_periodic-maintenance_dashboard-tab-content {
        padding: 20px 15px;
    }

    .vehicle_periodic-maintenance_dashboard-vehicles-grid {
        grid-template-columns: 1fr;
        max-height: 300px;
    }

    .vehicle_periodic-maintenance_dashboard-product-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
}

/* =================== LIGHT THEME SUPPORT =================== */

/* Header */

/* Filters */

/* Dropdown */

/* KPI Stats Cards */

/* Chart Cards */

/* Table */

/* Modal */

/* Tabs */

/* Form Section */

/* Plate Suggestions */

/* Vehicle Selection Grid */

/* Product Section */

/* Modal Footer */

