/* Inherit base styles from style.css */

/* --- Navbar Override for Report Page ONLY --- */
/* This ensures the navbar starts at the very top (0px) on the report page */
.navbar {
    top: 0px !important; /* Use !important to ensure it overrides the 60px set in style.css */
}

/* --- Report Page Layout --- */
.report-section {
    /* Adjusted padding-top from 120px back to 80px to clear the 60px header */
    /* Since we removed the announcement bar, the new height of the fixed navbar is about 60-80px. */
    /* We need to ensure enough padding to clear the 60px header */
    padding: 100px 50px 80px; 
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.report-title {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.report-subtitle {
    font-size: 1.1em;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* --- Form Styling --- */
.report-form {
    width: 100%;
    text-align: left;
    background-color: var(--button-dark);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--hover-dark);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group label i {
    margin-right: 5px;
    color: var(--primary-color);
}

.report-form input[type="text"],
.report-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--hover-dark);
    border-radius: 5px;
    background-color: var(--background-dark);
    color: var(--text-color);
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
    resize: vertical;
}

.report-form input[type="text"]:focus,
.report-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

/* Match the existing button style */
.report-submit-btn {
    width: 100%;
    margin-top: 20px;
}

/* Status message style */
.status-message {
    margin-top: 20px;
    font-weight: 600;
}

.status-message.success {
    color: #4CAF50;
}

.status-message.error {
    color: #f44336;
}

/* Active state for 'Report a Bug' in Navbar */
.active-nav-link {
    color: var(--primary-color) !important; 
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .report-section {
        padding: 80px 20px 40px; 
    }
}