/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.nav-brand h1 {
    color: #2d3748;
    font-size: 28px;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-input-group {
    display: flex;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-input-group input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 18px;
    border-radius: 8px;
    outline: none;
    color: #333;
}

.search-input-group input::placeholder {
    color: #a0aec0;
}

.search-input-group .btn {
    margin: 0;
    border-radius: 8px;
    white-space: nowrap;
}

/* USP Section */
.usp-section {
    padding: 80px 0;
    background: white;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.usp-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.usp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.usp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.usp-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2d3748;
}

.usp-card p {
    color: #718096;
    font-size: 16px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2d3748;
    color: #a0aec0;
    padding: 40px 0;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar .container {
        padding: 12px 20px;
    }
    
    .nav-brand h1 {
        font-size: 24px;
    }
    
    .nav-links {
        gap: 8px;
    }
    
    .nav-links .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .search-input-group .btn {
        width: 100%;
        justify-content: center;
    }
    
    .usp-section {
        padding: 60px 0;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .usp-card {
        padding: 30px 20px;
    }
    
    .usp-card h3 {
        font-size: 20px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h3 {
        font-size: 28px;
    }
    
    .btn-large {
        width: 100%;
    }
}

/* Dashboard Styles */
.nav-brand a {
    text-decoration: none;
    color: inherit;
}

.nav-links {
    display: flex;
    align-items: center;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-name {
    color: #4a5568;
    font-weight: 500;
    font-size: 14px;
}

.logout-link {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
}

.logout-link:hover {
    text-decoration: underline;
}

/* Breadcrumb */
.breadcrumb-section {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #a0aec0;
}

.breadcrumb-current {
    color: #4a5568;
    font-weight: 500;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 40px;
}

.dashboard-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.dashboard-header p {
    font-size: 18px;
    color: #718096;
}

.search-section {
    max-width: 600px;
    margin: 0 auto 60px;
}

.main-search-form .search-input-group {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-search-form input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 8px;
    outline: none;
    color: #333;
}

.dashboard-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.action-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.action-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.action-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d3748;
}

.action-card p {
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Search Results */
.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 24px;
}

.results-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.results-info p {
    color: #718096;
    font-size: 16px;
}

.search-again {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.search-error {
    text-align: center;
    padding: 20px 0;
}

.search-error .search-again {
    justify-content: center;
    margin-top: 20px;
}

.inline-search-form {
    display: flex;
    gap: 12px;
    min-width: 300px;
}

.inline-search-form input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.inline-search-form input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results-icon {
    width: 96px;
    height: 96px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #a0aec0;
}

.no-results h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.no-results p {
    color: #718096;
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Driver Cards */
.results-grid {
    display: grid;
    gap: 24px;
}

.driver-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.driver-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

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

.driver-name h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 4px;
}

.driver-country {
    color: #718096;
    font-size: 14px;
}

.rating-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.rating-good {
    background: #c6f6d5;
    color: #22543d;
}

.rating-average {
    background: #fefcbf;
    color: #744210;
}

.rating-poor {
    background: #fed7d7;
    color: #742a2a;
}

.driver-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 12px;
    color: #a0aec0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    color: #2d3748;
    font-weight: 500;
}

.driver-description h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.driver-description p {
    color: #4a5568;
    line-height: 1.6;
}

/* Report Form Styles */
.report-header {
    text-align: center;
    margin-bottom: 40px;
}

.report-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.report-header p {
    font-size: 16px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Alert Styles */
.alert {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.alert-success {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
}

.alert-error {
    background: #fffbfa;
    border: 1px solid #fed7d7;
}

.alert-warning {
    background: #fffdf0;
    border: 1px solid #fbd38d;
}

.alert-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.alert-success .alert-icon {
    color: #38a169;
}

.alert-error .alert-icon {
    color: #e53e3e;
}

.alert-warning .alert-icon {
    color: #d69e2e;
}

.alert-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.alert-success .alert-content h4 {
    color: #22543d;
}

.alert-error .alert-content h4 {
    color: #742a2a;
}

.alert-warning .alert-content h4 {
    color: #744210;
}

.alert-warning .alert-content p {
    color: #744210;
}

.alert-content p {
    margin-bottom: 16px;
    color: #4a5568;
}

.alert-content ul {
    margin: 0;
    padding-left: 16px;
    color: #4a5568;
}

.alert-content li {
    margin-bottom: 4px;
}

/* Form Container */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.report-form {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.form-section {
    padding: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.form-help {
    color: #718096;
    font-size: 12px;
}

/* Checkbox Styles */
.checkbox-group {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    color: #4a5568;
}

/* Form Actions */
.form-actions {
    padding: 32px;
    background: #f8fafc;
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Authentication Pages */
.auth-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-body .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.register-container {
    width: 100%;
    max-width: 800px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.auth-header {
    padding: 40px 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.auth-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.auth-header p {
    color: #718096;
    font-size: 16px;
}

.auth-form {
    padding: 30px 40px 40px;
}

.register-form {
    background: white;
}

.register-form .form-section {
    padding: 32px 40px;
    border-bottom: 1px solid #e2e8f0;
}

.register-form .form-section:first-child {
    padding-top: 20px;
}

.register-form .form-section:last-child {
    border-bottom: none;
    padding-bottom: 20px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.auth-footer {
    padding: 20px 40px 40px;
    text-align: center;
    color: #718096;
    font-size: 14px;
}

.auth-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-body .footer {
    background: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(10px);
}

/* Admin Panel Styles */
.admin-body {
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.admin-navbar {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
}

.admin-navbar .nav-brand h1 {
    color: white;
}

.admin-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-name {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 14px;
}

.admin-main {
    flex: 1;
    padding: 40px 0;
}

.admin-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

/* Dashboard Stats */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-icon.pending {
    background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
}

.stat-icon.approved {
    background: linear-gradient(135deg, #68d391 0%, #38a169 100%);
}

.stat-icon.total {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-icon.companies {
    background: linear-gradient(135deg, #4fd1c7 0%, #38b2ac 100%);
}

.stat-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 4px;
}

.stat-content p {
    color: #718096;
    font-size: 14px;
    margin: 0;
}

/* Admin Sections */
.admin-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
    overflow: hidden;
}

.section-header {
    padding: 24px 32px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

/* Admin Tables */
.admin-table-container {
    overflow-x: auto;
}

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

.admin-table th,
.admin-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.admin-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #4a5568;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table tbody tr:hover {
    background: #f8fafc;
}

.driver-name,
.company-name {
    font-weight: 600;
    color: #2d3748;
}

/* Status and Rating Badges */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #fef5e7;
    color: #744210;
}

.status-approved {
    background: #c6f6d5;
    color: #22543d;
}

.status-rejected {
    background: #fed7d7;
    color: #742a2a;
}

/* Action Buttons */
.actions-cell {
    white-space: nowrap;
}

.btn-success {
    background: #38a169;
    color: white;
}

.btn-success:hover {
    background: #2f855a;
}

.btn-warning {
    background: #ed8936;
    color: white;
}

.btn-warning:hover {
    background: #dd6b20;
}

.btn-danger {
    background: #e53e3e;
    color: white;
}

.btn-danger:hover {
    background: #c53030;
}

.btn-small.btn-success,
.btn-small.btn-warning,
.btn-small.btn-danger {
    padding: 8px;
    border-radius: 6px;
    margin-right: 4px;
}

.btn-info {
    background: #4299e1;
    color: white;
}

.btn-info:hover {
    background: #3182ce;
}

.btn-small.btn-info {
    padding: 8px;
    border-radius: 6px;
    margin-right: 4px;
}

.toggle-details.active {
    background: #2b6cb0;
}

/* Report Details Expansion */
.report-details-row {
    background: #f8fafc !important;
}

.report-details-row:hover {
    background: #f8fafc !important;
}

.report-details-content {
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin: 8px 0;
    background: white;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
}

.details-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.details-date {
    color: #718096;
    font-size: 14px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
}

.detail-section h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.detail-section.full-width {
    grid-column: 1 / -1;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.detail-item .detail-label {
    font-weight: 600;
    color: #4a5568;
    font-size: 14px;
}

.detail-item .detail-value {
    color: #2d3748;
    font-weight: 500;
}

.report-description {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #4299e1;
    line-height: 1.6;
    color: #2d3748;
    margin-top: 12px;
}

.details-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    margin-top: 20px;
}

.details-actions .btn {
    padding: 12px 24px;
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 8px;
        min-width: 120px;
    }
    
    .nav-links .btn {
        padding: 6px 12px;
        font-size: 13px;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .search-input-group input {
        font-size: 16px;
        padding: 14px 16px;
    }
    
    .usp-card {
        padding: 24px 16px;
    }
    
    .usp-icon {
        width: 64px;
        height: 64px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    /* Dashboard Mobile */
    .nav-links {
        width: 100%;
    }
    
    .user-menu {
        justify-content: space-between;
        width: 100%;
    }
    
    .search-results-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .search-again {
        flex-direction: column;
        gap: 16px;
    }
    
    .inline-search-form {
        min-width: auto;
        width: 100%;
    }
    
    .driver-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .dashboard-header h2 {
        font-size: 28px;
    }
    
    .dashboard-actions {
        grid-template-columns: 1fr;
    }
    
    /* Report Form Mobile */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-section {
        padding: 24px 20px;
    }
    
    .form-actions {
        flex-direction: column;
        padding: 24px 20px;
    }
    
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .report-header h2 {
        font-size: 28px;
    }
    
    /* Auth Pages Mobile */
    .auth-main {
        padding: 20px;
    }
    
    .auth-container,
    .register-container {
        max-width: 100%;
    }
    
    .auth-header {
        padding: 30px 24px 20px;
    }
    
    .auth-header h2 {
        font-size: 24px;
    }
    
    .auth-form {
        padding: 20px 24px 30px;
    }
    
    .register-form .form-section {
        padding: 24px;
    }
    
    .auth-footer {
        padding: 20px 24px 30px;
    }
    
    /* Admin Mobile */
    .admin-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-content h3 {
        font-size: 24px;
    }
    
    .section-header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 12px 8px;
        font-size: 14px;
    }
    
    .actions-cell {
        min-width: 120px;
    }
    
    .admin-menu {
        flex-direction: column;
        gap: 8px;
        align-items: flex-end;
    }
    
    /* Report Details Mobile */
    .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .details-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .report-details-content {
        padding: 16px;
        margin: 4px 0;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .details-actions {
        flex-direction: column;
    }
    
    .details-actions .btn {
        width: 100%;
        justify-content: center;
    }
}