/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
    color: #333;
}

/* Container for all sections */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Styling for the title */
h1 {
    color: #333;
    text-align: center;
}

/* Mimic table styling for divs */
.table-style {
    background-color: #fff;
    border: 1px solid #000;
    padding: 20px;
    margin-bottom: 20px;
}

/* Form and input styling */
form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

input[type="text"], select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* Results table styling */
#resultsTable {
    width: 100%;
    border-collapse: collapse;
}

#resultsTable th, #resultsTable td {
    text-align: left;
    padding: 8px;
    border: 1px solid #000;
}

#resultsTable th {
    background-color: #f2f2f2;
}

/* Color coding for Good? dropdown */
.good-yes {
    background-color: #90ee90; /* Light green */
}

.good-no {
    background-color: #ffcccb; /* Light red */
}

.good-maybe {
    background-color: #add8e6; /* Light blue */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    form {
        flex-direction: column;
    }

    input[type="text"], select, button {
        width: 100%;
    }
}
