@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f8f8;
}

h1, h2, h3 {
    color: #e67e22;
}

.btn {
    display: inline-block;
    background-color: #e67e22;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
}

.btn:hover {
    background-color: #d35400;
}

.btn-small {
    padding: 5px 10px;
    font-size: 14px;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

table.survey-list {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #e67e22;
    background-color: white;
}

table.survey-list th,
table.survey-list td {
    border: 1px solid #e67e22;
    padding: 12px;
    text-align: left;
}

table.survey-list th {
    background-color: #e67e22;
    color: white;
    font-weight: bold;
}

table.survey-list tr:nth-child(even) {
    background-color: #fff5e6;
}

table.survey-list tr:hover {
    background-color: #ffe0b3;
}

/* Form Styles */
form {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="submit"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

input[type="submit"] {
    background-color: #e67e22;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #d35400;
}

.page {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.choice {
    margin-bottom: 10px;
}

#message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}