/* Reset default */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #d4fc79, #96e6a1);
    padding: 20px;
}

.container, .form-box {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

input, select, textarea {
    width: 100%;
    padding: 10px 12px;
    margin: 10px 0 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
    border-color: #2ecc71;
    outline: none;
}

button {
    background: #27ae60;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

button:hover {
    background: #2ecc71;
}

a {
    text-decoration: none;
    color: #2980b9;
}

a:hover {
    text-decoration: underline;
}

.menu {
    list-style: none;
    margin-top: 20px;
}

.menu li {
    margin: 10px 0;
}

.menu li a {
    background: #3498db;
    color: white;
    padding: 12px 20px;
    display: block;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    transition: 0.3s;
}

.menu li a:hover {
    background: #2980b9;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table th, table td {
    padding: 12px;
    border: 1px solid #ccc;
    text-align: left;
}

table th {
    background-color: #2ecc71;
    color: white;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}
