/* Admin Dashboard Styles for PANORAMA */

/* General Admin Layout */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    color: #333333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Admin Header */
header {
    background-color: #000000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.admin-logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 45px;
}

.admin-badge {
    background-color: #FF0000;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

.admin-nav {
    display: flex;
    gap: 25px;
}

.admin-nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.admin-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.admin-nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: #FF0000;
}

.admin-actions {
    display: flex;
    align-items: center;
}

.admin-user {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
}

.admin-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.admin-name {
    color: white;
    font-weight: 500;
    margin-right: 10px;
}

/* Admin Main Content */
.admin-main {
    padding: 30px 0;
}

.admin-dashboard {
    width: 100%;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.dashboard-header h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.dashboard-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.date-filter {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.date-filter span {
    margin-right: 10px;
    font-size: 14px;
}

.export-btn {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.export-btn i {
    margin-right: 8px;
}

/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stats-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.stats-card-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #666;
}

.stats-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.stats-card-icon.revenue {
    background-color: rgba(255, 0, 0, 0.1);
    color: #FF0000;
}

.stats-card-icon.bookings {
    background-color: rgba(25, 118, 210, 0.1);
    color: #1976D2;
}

.stats-card-icon.vehicles {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.stats-card-icon.customers {
    background-color: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.stats-card-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-card-trend {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.stats-card-trend.positive {
    color: #4CAF50;
}

.stats-card-trend.negative {
    color: #F44336;
}

.stats-card-trend i {
    margin-right: 5px;
}

/* Dashboard Charts */
.dashboard-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.chart-container {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #666;
}

.chart-actions {
    display: flex;
    gap: 10px;
}

.chart-action-btn {
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.chart-action-btn.active {
    background-color: #FF0000;
    color: white;
    border-color: #FF0000;
}

.chart-body {
    height: 250px;
}

/* Recent Activity */
.recent-activity {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #666;
}

.view-all {
    color: #FF0000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.activity-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 15px;
    flex-shrink: 0;
}

.activity-icon.booking {
    background-color: rgba(25, 118, 210, 0.1);
    color: #1976D2;
}

.activity-icon.user {
    background-color: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.activity-icon.payment {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.activity-icon.return {
    background-color: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
}

.activity-icon.cancel {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

.activity-details {
    flex: 1;
}

.activity-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.activity-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.activity-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.activity-time {
    color: #999;
}

.activity-link {
    color: #1976D2;
    text-decoration: none;
    font-weight: 500;
}

/* Recent Bookings */
.recent-bookings {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow-x: auto;
}

.bookings-table table {
    width: 100%;
    border-collapse: collapse;
}

.bookings-table th {
    text-align: left;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    border-bottom: 1px solid #eee;
}

.bookings-table td {
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.customer-info {
    display: flex;
    align-items: center;
}

.customer-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

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

.status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.status.confirmed {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.status.pending {
    background-color: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.status.active {
    background-color: rgba(25, 118, 210, 0.1);
    color: #1976D2;
}

.status.completed {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.status.cancelled {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

.action-buttons {
    display: flex;
    gap: 5px;
}

.action-btn {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: none;
    background-color: #f5f5f5;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn.view:hover {
    background-color: rgba(25, 118, 210, 0.1);
    color: #1976D2;
}

.action-btn.edit:hover {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.action-btn.cancel:hover, .action-btn.delete:hover {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

.action-btn.restore:hover, .action-btn.activate:hover {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.action-btn.block:hover {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

.action-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Popular Vehicles */
.popular-vehicles {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vehicle-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.vehicle-image {
    position: relative;
    height: 120px;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.vehicle-badge.luxury {
    background-color: rgba(244, 67, 54, 0.9);
    color: white;
}

.vehicle-badge.premium {
    background-color: rgba(25, 118, 210, 0.9);
    color: white;
}

.vehicle-badge.standard {
    background-color: rgba(76, 175, 80, 0.9);
    color: white;
}

.vehicle-badge.economy {
    background-color: rgba(255, 152, 0, 0.9);
    color: white;
}

.vehicle-details {
    padding: 15px;
}

.vehicle-name {
    font-weight: 600;
    margin-bottom: 10px;
}

.vehicle-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.vehicle-stat {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.vehicle-stat i {
    margin-right: 5px;
    font-size: 10px;
}

.vehicle-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.price-label {
    color: #666;
}

.price-value {
    font-weight: 600;
    color: #FF0000;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: modalFadeIn 0.3s;
}

.large-modal {
    max-width: 900px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    font-size: 24px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

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

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.cancel-btn {
    background-color: #f5f5f5;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.save-btn, .confirm-cancel-btn, .block-confirm-btn, .add-note-btn, .generate-report-btn {
    background-color: #FF0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.save-report-btn {
    background-color: #1976D2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* Booking Details */
.booking-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.booking-info-section,
.booking-customer-section,
.booking-vehicle-section,
.booking-dates-section,
.booking-payment-section,
.booking-actions-section,
.booking-notes-section {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
}

.booking-info-section h3,
.booking-customer-section h3,
.booking-vehicle-section h3,
.booking-dates-section h3,
.booking-payment-section h3,
.booking-actions-section h3,
.booking-notes-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.info-item {
    margin-bottom: 10px;
}

.info-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.info-value {
    font-weight: 500;
}

.customer-profile {
    display: flex;
    align-items: center;
}

.customer-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.customer-profile-info {
    flex: 1;
}

.customer-name-large {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.customer-contact {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.customer-contact div {
    margin-bottom: 5px;
}

.customer-contact i {
    width: 20px;
    text-align: center;
    margin-right: 5px;
}

.view-profile-btn {
    display: inline-block;
    background-color: #1976D2;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.vehicle-details-card {
    display: flex;
    align-items: center;
}

.vehicle-image {
    width: 100px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 15px;
}

.vehicle-details-info {
    flex: 1;
}

.vehicle-name-large {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.vehicle-specs-large {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.vehicle-features {
    display: flex;
    gap: 10px;
}

.feature {
    font-size: 12px;
    color: #666;
}

.feature i {
    margin-right: 5px;
}

.dates-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.date-block {
    flex: 1;
    text-align: center;
}

.date-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.date-value {
    font-weight: 600;
    margin-bottom: 5px;
}

.time-value, .location-value {
    font-size: 14px;
    color: #666;
}

.date-separator {
    margin: 0 15px;
    color: #ddd;
}

.payment-details {
    font-size: 14px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.payment-row.total {
    font-weight: 600;
    border-bottom: 2px solid #ddd;
}

.payment-label {
    flex: 1;
}

.payment-value {
    flex: 1;
    color: #666;
}

.payment-amount {
    flex: 1;
    text-align: right;
}

.payment-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.payment-status.paid {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.payment-status.pending {
    background-color: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.action-buttons-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.action-btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 4px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.action-btn-large i {
    margin-right: 8px;
}

.action-btn-large.edit {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.action-btn-large.cancel {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

.action-btn-large.print {
    background-color: rgba(25, 118, 210, 0.1);
    color: #1976D2;
}

.action-btn-large.email {
    background-color: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
}

.notes-container {
    margin-bottom: 15px;
    max-height: 200px;
    overflow-y: auto;
}

.note-item {
    background-color: white;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
}

.note-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.note-author {
    font-weight: 500;
}

.note-date {
    font-size: 12px;
    color: #999;
}

.note-content {
    font-size: 14px;
}

.add-note-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 10px;
}

/* Client Details Page */
.client-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.client-avatar-container {
    margin-right: 30px;
}

.client-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info {
    flex: 1;
}

.client-name-large {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.client-since {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.client-contact-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item i {
    margin-right: 8px;
    color: #666;
}

.client-actions {
    display: flex;
    gap: 10px;
}

.client-action-btn {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 4px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.client-action-btn i {
    margin-right: 8px;
}

.client-action-btn.primary {
    background-color: #FF0000;
    color: white;
}

.client-action-btn.secondary {
    background-color: #f5f5f5;
    color: #333;
}

.client-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.client-tab {
    padding: 15px 20px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.client-tab.active {
    border-bottom-color: #FF0000;
    color: #FF0000;
}

.client-section {
    margin-bottom: 30px;
}

.client-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.client-section-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.client-section-action {
    color: #1976D2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.client-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.client-stat-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.client-stat-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.client-stat-label {
    font-size: 14px;
    color: #666;
}

.booking-history {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.payment-history {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.documents-section {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.document-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.document-preview {
    height: 120px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-preview i {
    font-size: 36px;
    color: #999;
}

.document-info {
    padding: 15px;
}

.document-name {
    font-weight: 500;
    margin-bottom: 5px;
}

.document-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.document-actions {
    display: flex;
    gap: 10px;
}

.document-action {
    flex: 1;
    text-align: center;
    padding: 6px 0;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.document-action.view {
    background-color: rgba(25, 118, 210, 0.1);
    color: #1976D2;
}

.document-action.download {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.notes-section {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* User Type Tabs */
.user-tabs {
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
}

.user-tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.user-tab.active {
    background-color: rgba(255, 0, 0, 0.05);
    border-bottom-color: #FF0000;
}

.user-label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.user-count {
    display: inline-block;
    background-color: #f5f5f5;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
}

.user-tab.active .user-count {
    background-color: #FF0000;
    color: white;
}

/* Status Tabs */
.status-tabs {
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
}

.status-tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.status-tab.active {
    background-color: rgba(255, 0, 0, 0.05);
    border-bottom-color: #FF0000;
}

.status-label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.status-count {
    display: inline-block;
    background-color: #f5f5f5;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
}

.status-tab.active .status-count {
    background-color: #FF0000;
    color: white;
}

/* Filters */
.filters-container {
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px;
    margin-bottom: 20px;
    align-items: center;
    gap: 20px;
}

.filter-group {
    display: flex;
    align-items: center;
}

.filter-group label {
    margin-right: 10px;
    font-size: 14px;
    color: #666;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.filter-btn {
    margin-left: auto;
    background-color: #FF0000;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.filter-btn i {
    margin-right: 8px;
}

/* Search Container */
.search-container {
    position: relative;
}

.search-input {
    padding: 8px 15px 8px 35px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    width: 250px;
}

.search-container i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

/* Add Button */
.add-btn {
    background-color: #FF0000;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.add-btn i {
    margin-right: 8px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.pagination-info {
    font-size: 14px;
    color: #666;
}

.pagination-controls {
    display: flex;
    gap: 5px;
}

.pagination-btn {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.pagination-btn.active {
    background-color: #FF0000;
    color: white;
    border-color: #FF0000;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Image Upload */
.image-upload-container {
    display: flex;
    gap: 20px;
}

.image-upload-btn {
    position: relative;
    width: 120px;
    height: 120px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.image-upload-btn i {
    font-size: 24px;
    color: #999;
    margin-bottom: 10px;
}

.image-upload-btn span {
    font-size: 14px;
    color: #666;
}

.image-upload-btn input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.image-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-preview {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
}

/* Report Types */
.report-types {
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
}

.report-type {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.report-type i {
    font-size: 20px;
    margin-bottom: 8px;
}

.report-type.active {
    background-color: rgba(255, 0, 0, 0.05);
    border-bottom-color: #FF0000;
    color: #FF0000;
}

/* Report Content */
.report-content {
    display: none;
}

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

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.report-header h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.report-filters {
    display: flex;
    gap: 15px;
}

.report-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.summary-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.summary-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.summary-trend {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.summary-trend.positive {
    color: #4CAF50;
}

.summary-trend.negative {
    color: #F44336;
}

.summary-trend i {
    margin-right: 5px;
}

.report-chart-container {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 300px;
}

.report-table-container {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow-x: auto;
}

.report-table-container h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
}

.report-table th {
    text-align: left;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    border-bottom: 1px solid #eee;
}

.report-table td {
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #eee;
}

/* Custom Report Builder */
.custom-report-builder {
    display: none;
}

.report-builder-section {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.report-builder-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
}

.data-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.data-category {
    margin-bottom: 20px;
}

.data-category-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.data-category-header input {
    margin-right: 10px;
}

.data-category-header label {
    font-weight: 500;
}

.data-fields {
    margin-left: 25px;
}

.data-field {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.data-field input {
    margin-right: 10px;
}

.visualization-options {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.visualization-option {
    display: flex;
    align-items: center;
}

.visualization-option input {
    margin-right: 10px;
}

.chart-types {
    display: flex;
    gap: 20px;
}

.chart-type {
    display: flex;
    align-items: center;
}

.chart-type input {
    margin-right: 10px;
}

.report-builder-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.saved-reports {
    margin-top: 30px;
}

/* Export Dropdown */
.export-options {
    position: relative;
}

.export-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    min-width: 180px;
}

.export-dropdown.active {
    display: block;
}

.export-option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

.export-option:hover {
    background-color: #f5f5f5;
}

.export-option i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Date Range Picker */
.date-range-picker {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.date-range-picker i:first-child {
    margin-right: 10px;
}

.date-range-picker span {
    margin: 0 10px;
    font-size: 14px;
}

/* Create Report Button */
.create-report-btn {
    background-color: #FF0000;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.create-report-btn i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-charts {
        grid-template-columns: 1fr;
    }
    
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-details-grid {
        grid-template-columns: 1fr;
    }
    
    .client-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .report-summary {
        grid-template-columns: 1fr;
    }
    
    .data-selection {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admin-nav {
        display: none;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .dashboard-actions {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .client-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .client-avatar-container {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .client-contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .filters-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
    
    .report-filters {
        flex-direction: column;
    }
    
    .visualization-options, .chart-types {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .stats-cards {
        grid-template-columns: 1fr;
    }
    
    .client-stats {
        grid-template-columns: 1fr;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .client-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .client-action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .report-builder-actions {
        flex-direction: column;
    }
    
    .cancel-report-btn, .save-report-btn, .generate-report-btn {
        width: 100%;
    }
}
