body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
}

header {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

header h1 {
    margin: 0;
}

main {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.report-container {
    text-align: center;
}

.report-btn {
    padding: 15px 30px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.report-btn:hover {
    background-color: #219150;
}

.report-form {
    display: none; /* Hidden initially */
    margin-top: 20px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.report-form label {
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
}

.report-form input[type="text"],
.report-form input[type="email"],
.report-form input[type="file"],
.report-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.report-form textarea {
    resize: vertical;
}

.report-form button {
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.report-form button:hover {
    background-color: #219150;
}
