/* styles.css */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2 {
    color: #4CAF50;
    text-align: center;
}

h1 {
    margin-top: 20px;
    font-size: 2em;
}

h2 {
    margin-top: 20px;
    font-size: 1.5em;
}

/* Section Styles */
section {
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

/* Input and Button Styles */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #45a049;
}

/* Content Display Styles */
#incident-report-content,
#domain-analysis-content,
#classification-summary-content,
#detection-accuracy-content,
#phishing-characteristics-content,
#threat-report-content {
    white-space: pre-wrap;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
}

/* Form Styles */
form {
    margin-top: 20px;
}

input[type="hidden"] {
    display: none;
}
