body {
    padding-bottom: 100px; /* Space for fixed bottom nav */
    background-color: #f8f9fa;
}

/* Home Header */
.home-header {
    background: linear-gradient(135deg, rgb(220, 53, 69), rgb(220, 53, 69));
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 0 0 15px 15px;
    margin-bottom: 20px;
}

.home-header h3 {
    margin: 0;
    font-weight: bold;
}

.home-header p {
    margin: 5px 0 0 0;
    opacity: 0.9;
}

.location-card {
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.action-btn {
    border-radius: 25px;
    font-weight: bold;
    padding: 12px 0;
    margin-bottom: 10px;
}

.call-911 {
    background-color: #dc3545;
    border-color: #dc3545;
}

.call-axiom {
    background-color: #dc3545;
    border-color: #dc3545;
}

.vehicle-accident {
    background-color: #dc3545;
    border-color: #dc3545;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #dee2e6;
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.nav-item {
    text-align: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 12px;
    padding: 8px 4px;
    transition: color 0.2s ease;
    cursor: pointer;
}

.nav-item:hover {
    color: #dc3545;
    text-decoration: none;
}

.nav-item.active {
    color: #dc3545;
    font-weight: 500;
}

.nav-item i {
    font-size: 18px;
    margin-bottom: 2px;
}

.tab-content {
    min-height: 60vh;
}

.location-info {
    font-size: 14px;
    line-height: 1.4;
}

#loading {
    display: none;
}

/* Vehicle Accident Full Screen Modal */
.vehicle-accident-modal .modal-content {
    background-color: #dc3545 !important;
    border: none;
}

.vehicle-accident-modal .modal-header {
    padding: 2rem 1.5rem 1rem;
    border-bottom: none;
}

.vehicle-accident-modal .modal-title {
    font-size: 1.8rem;
    font-weight: bold;
}

.vehicle-accident-modal .modal-body {
    padding: 2rem 2rem;
}

.vehicle-accident-modal .modal-footer {
    padding: 1rem 2rem 2rem;
}

.vehicle-accident-modal .instruction-step h5 {
    font-size: 1.4rem;
    font-weight: bold;
}

.vehicle-accident-modal .instruction-step ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.vehicle-accident-modal .btn-light {
    border: 3px solid #dc3545;
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
    border-radius: 10px;
}

.vehicle-accident-modal .btn-light:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
    transition: all 0.2s ease;
}

.vehicle-accident-modal .alert {
    border-radius: 10px;
    font-size: 1.1rem;
    padding: 1.25rem;
}

/* Responsive Design */
@media (max-width: 576px) {
    .home-header {
        padding: 15px;
    }

    .vehicle-accident-modal .modal-body {
        padding: 1.5rem 1rem;
    }

    .vehicle-accident-modal .modal-header {
        padding: 1.5rem 1rem 0.5rem;
    }

    .vehicle-accident-modal .modal-title {
        font-size: 1.4rem;
    }

    .vehicle-accident-modal .instruction-step h5 {
        font-size: 1.2rem;
    }
}