/* Report Page Styles */
.report-page {
    background-color: #ffffff;
}

.report-header {
    background: linear-gradient(90deg, rgba(10, 10, 26, 0.95), rgba(30, 30, 60, 0.95));
    color: #ffffff;
    padding: 30px 0;
    position: relative;
}

.report-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

.report-header .container {
    position: relative;
    z-index: 2;
}

.report-header h1 {
    font-weight: 700;
    margin-bottom: 10px;
}

.report-header .breadcrumb-item a {
    color: var(--info-color);
    text-decoration: none;
}

.report-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.report-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* Map Container */
.map-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    height: 100%;
    border: 1px solid rgba(94, 23, 235, 0.1);
}

#map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(94, 23, 235, 0.1);
}

/* Form Container */
.form-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    height: 100%;
    border: 1px solid rgba(94, 23, 235, 0.1);
}

.form-container h3 {
    color: #212529;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--futuristic-gradient);
    border-radius: 3px;
}

.location-preview {
    background-color: rgba(94, 23, 235, 0.05);
    border-radius: 8px;
    padding: 15px;
    font-size: 0.9rem;
    border-left: 3px solid var(--primary-color);
}

.form-label {
    font-weight: 500;
    color: #212529;
}

.form-control, .form-select {
    border-color: rgba(94, 23, 235, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(94, 23, 235, 0.25);
}

.form-text {
    color: #6c757d;
    font-size: 0.8rem;
}

/* Submit Button */
.btn-submit {
    background: var(--futuristic-gradient);
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--futuristic-glow);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(94, 23, 235, 0.8);
}

/* App Download Section */
.app-download-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.app-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(94, 23, 235, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(94, 23, 235, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

.app-download-container {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border: 1px solid rgba(94, 23, 235, 0.1);
}

.app-download-content h3 {
    color: #212529;
    font-weight: 700;
    margin-bottom: 15px;
}

.app-download-content p {
    color: #6c757d;
    margin-bottom: 25px;
}

.app-download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-download-button {
    display: inline-flex;
    align-items: center;
    background-color: #212529;
    color: #ffffff;
    border-radius: 8px;
    padding: 8px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-download-button:hover {
    background-color: #000000;
    transform: translateY(-2px);
    color: #ffffff;
}

.app-download-button i {
    font-size: 1.8rem;
    margin-right: 10px;
}

.app-download-button .button-text {
    text-align: left;
}

.app-download-button .small-text {
    font-size: 0.7rem;
    display: block;
    opacity: 0.8;
}

.app-download-button .big-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
}

.app-download-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.app-features {
    margin-top: 20px;
}

.app-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.app-feature-icon {
    width: 30px;
    height: 30px;
    background: var(--futuristic-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #ffffff;
    font-size: 0.8rem;
}

.app-feature-text {
    font-size: 0.9rem;
    color: #212529;
}

@media (max-width: 768px) {
    .map-container, .form-container {
        margin-bottom: 20px;
    }
    
    #map {
        height: 300px;
    }
    
    .app-download-image {
        margin-top: 30px;
    }
}
