/* Base Styles */
:root {
    --primary-color: #00897b;
    --primary-light: #4ebaaa;
    --primary-dark: #005b4f;
    --secondary-color: #ffa000;
    --secondary-light: #ffd149;
    --secondary-dark: #c67100;
    --text-color: #263238;
    --text-light: #546e7a;
    --background: #ffffff;
    --background-light: #f5f5f5;
    --background-dark: #e0e0e0;
    --success: #4caf50;
    --error: #f44336;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.hidden {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Header */
header {
    background-color: var(--background);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.logo .tagline {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Logo with custom India icon styling */
.logo a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.4rem;
}

.logo-icon {
    height: 32px; /* Adjust size as needed */
    width: auto;
    display: block;
}

/* For better alignment with text */
.logo span {
    display: inline-block;
    vertical-align: middle;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
}

.btn-large {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
}

.btn-report-header {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

/* Hero Section */
.hero {
    background-color: var(--primary-light);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.india-map-container {
    position: relative;
    width: 45%;
    max-width: 500px;
    min-width: 300px;
}

.india-map {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.india-map:hover {
    transform: scale(1.03);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.map-text {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-tagline {
    display: block;
    font-size: 1.4rem;
    margin-top: 0.5rem;
    color: var(--primary-dark);
    opacity: 0.9;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
}

.map-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.map-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.filter-btn {
    background-color: var(--background);
    border: 1px solid var(--background-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

#map {
    height: 450px;
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* View Toggle */
.view-toggle-control {
    background-color: var(--background);
    border-radius: var(--border-radius);
    margin: 10px;
    padding: 4px;
    box-shadow: var(--shadow-sm);
    display: flex;
}

.view-toggle-btn {
    background: none;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    font-weight: 500;
    border-radius: 4px;
    font-size: 0.8rem;
}

.view-toggle-btn:hover {
    background-color: var(--background-light);
}

.view-toggle-btn.active {
    background-color: var(--primary-color);
    color: white;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--background-dark);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: var(--primary-dark);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.cta-section .btn:hover {
    background-color: var(--secondary-light);
}

/* Report Form */
.report-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

#report-form {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--background-dark);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 137, 123, 0.2);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Custom Radio Buttons */
.radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radio-option label {
    font-size: 0.95rem;
    white-space: nowrap;
    color: var(--text-color);
}

.radio-option input[type="radio"] {
    margin: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

/* Responsive adjustments for radio buttons */
@media screen and (max-width: 360px) {
    .radio-group {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .radio-option label {
        font-size: 0.9rem;
    }
}

/* Improved file upload and camera button styling */
.file-upload-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.file-label-text {
    font-weight: 500;
    color: var(--text-color);
}

.file-upload-button {
    display: inline-block;
    background-color: var(--background);
    border: 1px solid var(--background-dark);
    border-radius: var(--border-radius);
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.file-upload-label:hover .file-upload-button {
    background-color: var(--background-dark);
}

.file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#camera-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--background);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.7rem 1.2rem;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    width: fit-content;
}

#camera-button:hover {
    background-color: rgba(0, 128, 128, 0.1);
}

.camera-icon {
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Image preview styling */
#image-preview {
    margin-top: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    max-width: 100%;
}

#image-preview img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

/* Submit button styling */
.submit-container {
    margin-top: 2rem;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Success Message */
#submission-success {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--success);
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

#submission-success h3 {
    color: var(--success);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.optional-email {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background);
    border-radius: var(--border-radius);
    text-align: left;
}

.optional-email p {
    margin-bottom: 1rem;
}

.optional-email .form-group {
    display: flex;
    gap: 0.5rem;
}

.optional-email input {
    flex: 1;
}

/* Issue Breakdown */
.issue-bars {
    margin-top: 1rem;
}

.issue-bar-container {
    margin-bottom: 1rem;
}

.issue-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.issue-bar {
    height: 8px;
    background-color: var(--background-dark);
    border-radius: 4px;
    overflow: hidden;
}

.issue-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.issue-trash {
    background-color: #2196f3;
}

.issue-deadAnimal {
    background-color: #f44336;
}

.issue-sewage {
    background-color: #9c27b0;
}

.issue-other {
    background-color: #ff9800;
}

.issue-count {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: right;
    margin-top: 0.2rem;
}

/* Recent Reports */
#recent-reports li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--background-dark);
}

#recent-reports li:last-child {
    border-bottom: none;
}

.report-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.report-type {
    font-weight: 500;
    color: var(--primary-color);
}

.report-location {
    font-size: 0.85rem;
}

.report-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Top Areas */
#top-areas li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--background-dark);
}

#top-areas li:last-child {
    border-bottom: none;
}

.area-name {
    font-weight: 500;
}

.area-count {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Camera styles */
.camera-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.camera-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
}

#camera-preview {
    width: 100%;
    height: auto;
    background-color: #000;
    border-radius: var(--border-radius);
}

.camera-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

#camera-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.camera-icon {
    font-size: 1.2rem;
}

/* Location picker styles */
.location-picker-container {
    margin-bottom: 1.5rem;
}

#location-map {
    height: 300px;
    width: 100%;
    border-radius: var(--border-radius);
    margin: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.search-container {
    margin-bottom: 0.5rem;
}

#location-search {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--background-dark);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.coordinates-display {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0.5rem 0;
}

.manual-address {
    margin-top: 1rem;
}

.address-help {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

/* Data section (Map and Stats side by side) */
.data-section {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Stats container */
.stats-container {
    display: flex;
    flex-direction: column;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    height: 100%;
}

/* Map container */
.map-container {
    display: flex;
    flex-direction: column;
}

#map {
    height: 450px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.map-controls {
    margin-bottom: 1rem;
}

.map-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    background-color: var(--background);
    border: 1px solid var(--background-dark);
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background-color: var(--background-dark);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Stat cards */
.stat-card {
    background-color: var(--background);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.stat-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    border-bottom: 2px solid var(--background-dark);
    padding-bottom: 0.5rem;
}

/* Report page grid layout */
.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.report-grid .form-container {
    padding: 2rem;
    height: fit-content;
}

.report-grid .map-container {
    display: flex;
    flex-direction: column;
}

.report-grid #location-map {
    height: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 0.5rem 0;
}

.report-grid .search-container {
    margin-bottom: 0.5rem;
}

.report-grid .coordinates-display {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0.5rem 0;
}

/* Location search styling */
.location-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--background-dark);
    border-radius: var(--border-radius);
    font-size: 1rem;
    margin-top: 0.3rem;
}

.location-help {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.coordinates-display {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Updated form styling without map */
.report-section.compact {
    padding: 2rem 0;
}

.section-header.compact {
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-header.compact h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.section-header.compact p {
    font-size: 1rem;
}

.form-container.compact {
    background-color: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.form-group.compact {
    margin-bottom: 1.2rem;
}

.form-group.compact:last-child {
    margin-bottom: 0;
}

.form-group.compact label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.form-row.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.radio-option label {
    font-size: 0.95rem;
    margin-bottom: 0 !important;
}

input[type="text"], textarea, .location-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--background-dark);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.upload-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.upload-btn {
    display: inline-block;
    background-color: var(--background-light);
    border: 1px solid var(--background-dark);
    border-radius: var(--border-radius);
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.upload-btn:hover {
    background-color: var(--background-dark);
}

.camera-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--background-light);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.camera-btn:hover {
    background-color: rgba(0, 128, 128, 0.1);
}

.file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#image-preview {
    margin-top: 1rem;
    max-height: 200px;
    overflow: hidden;
}

#image-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: var(--border-radius);
}

/* Mobile Styles (up to 480px) */
@media screen and (max-width: 480px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .map-column {
        order: 2;
        height: 200px;
    }
    
    .form-column {
        order: 1;
    }
    
    .radio-group {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet Styles (481px to 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-column {
        order: 2;
        height: 250px;
    }
    
    .form-column {
        order: 1;
    }
}

/* Larger Tablets and Small Desktops (769px to 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .form-grid {
        gap: 1rem;
    }
}

/* Navigation styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.btn-report {
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.btn-report:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-report.active {
    background-color: var(--primary-dark);
} 