/* style.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    margin: 40px;
}

h1, h2, h3 {
    color: #343a40;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 32px;
    margin-bottom: 30px;
}

body {
    background: #fdfdfd;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

table th, table td {
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    text-align: left;
}

table th {
    background-color: #e9ecef;
    font-weight: bold;
}

table tr:hover {
    background-color: #f1f3f5;
}

input[type="text"],
select {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

input[type="submit"],
button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

input[type="submit"]:hover,
button:hover {
    background-color: #218838;
}

form {
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #6c757d;
}

.back-link:hover {
    color: #495057;
    text-decoration: none;
}
