/* General styles for admin and member pages */
body {
    font-family: 'Helvetica', sans-serif;
    margin: 0;
    padding: 20px;
}

h2 {
    color: #003366;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #87CEEB;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background: #00CED1;
    color: white;
}

a {
    color: #00CED1;
    text-decoration: none;
}

a:hover {
    color: #008B8B;
}

form {
    margin: 20px 0;
}

input[type="text"], input[type="email"], input[type="password"], input[type="date"], input[type="file"] {
    padding: 8px;
    border: 1px solid #87CEEB;
    border-radius: 4px;
    width: calc(100% - 16px);
}

button {
    padding: 10px;
    background: #00CED1;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}

button:hover {
    background: #008B8B;
}