body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f8;
    margin: 0;
    padding: 20px;
    color: #333;
}

h2 {
    color: #2c3e50;
}

form {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 600px;
}

form input[type="text"],
form input[type="number"],
form input[type="select"],
form input[type="file"],
form input[type="password"],
form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

form button {
    background-color: #3498db;
    color: white;
    padding: 10px 16px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #2980b9;
}

form a button {
    background-color: #95a5a6;
}

form a button:hover {
    background-color: #7f8c8d;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

table th, table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #2c3e50;
    color: white;
}

table tr:hover {
    background-color: #f1f1f1;
}

table td form {
    display: inline;
}


table td button {
    background-color: #e74c3c;
    margin-left: 5px;
}

table td button:hover {
    background-color: #c0392b;
}

table td a {
    color: #2980b9;
    text-decoration: none;
    margin-right: 10px;
}

table td a:hover {
    text-decoration: underline;
}
