/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the footer sticks to the bottom */
}

.container {
    padding: 20px;
    text-align: center;
    flex: 1; /* Allows the container to grow and push footer down */
}

/* Header Styles */
header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px;
    background-color: #343a40;
    color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

header .btn {
    color: #f8f9fa;
}

/* Response Buttons */
.response-btn {
    margin: 5px;
    background-color: #007bff; /* Default color */
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition for hover */
}

.response-btn.active {
    background-color: #28a745 !important; /* Green color when selected */
}

.response-btn:hover {
    background-color: #0056b3; /* Blue color on hover */
}

/* Optional: Add a hover effect to buttons when not selected */
.response-btn:not(.active):hover {
    background-color: #0069d9; /* Darker blue when hovered */
}
/* Submit Button */
#submitButton {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

#submitButton:hover {
    background-color: #218838;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 8px;
    text-align: center;
}

/* Footer Styles */
footer {
    background-color: #343a40;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #ddd;
    color: #f8f9fa;

}
/* Response Buttons */

