body { 
    background: linear-gradient(to bottom, #ffd8cc 0%, #ffe6f0 100%);
    font-family: 'Abel', sans-serif;
    color: #444;
    margin: 0;
    padding: 0;
}
header, footer {
    color: white;
    background: linear-gradient(to bottom, #ffccd9 0%, #ff99aa 100%);
    text-align: center;
    border: solid 5pt #ff99aa;
    border-radius: 50px;
    padding: 15px;
    margin-top: 20px;
    font-weight: bold;
}
nav {
    background-color: #ffccd9;
    border-bottom: 2px solid #ffa6c0;
    padding: 10px 0;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}
nav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
nav ul li a:hover {
    background-color: #ffe6f0;
    color: #ff66a3;
}
table {
    width: 95%;
    margin: 20px auto;
    border-collapse: collapse;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 2px solid #ffb3c6;
    background-color: #fff0f5;
}
table th, table td {
    border: 1px solid #ffa6c0;
    padding: 10px;
    text-align: center;
}
table th {
    background-color: #ff99aa;
    color: #ffffff;
    text-transform: uppercase;
}
table tr:nth-child(even) {
    background-color: #ffe6f0;
}
table tr:hover {
    background-color: #ffd1dc;
}
form {
    width: 90%;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
    background-color: #ffe6f0;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
form label {
    font-weight: bold;
    margin-right: 5px;
    color: #ff66a3;
}
form input[type="text"],
form input[type="number"],
form input[type="time"] {
    padding: 5px;
    border: 1px solid #ffa6c0;
    border-radius: 5px;
    width: 150px;
}
form input[type="submit"] {
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(to right, #ffb3c6, #ff99aa);
    color: #000000;
    font-weight: bold;
    transition: all 0.3s ease;
}
form input[type="submit"]:hover {
    background: linear-gradient(to right, #ff99aa, #ff66a3);
    transform: scale(1.05);
}
.lisamine {
    width: 40%;
    margin: 20px auto;
    padding: 15px;
    border: 2px solid #ffb3c6;
    border-radius: 12px;
    background: #fff0f5;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.lisamine h2 {
    text-align: center;
    color: #ff66a3;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}
.lisamine form label {
    display: block;
    margin-bottom: 3px;
    font-weight: bold;
    color: #ff66a3;
}
.lisamine form input,
.lisamine form select,
.lisamine form textarea {
    width: 95%;
    padding: 6px;
    margin-bottom: 8px;
    border: 1px solid #ffa6c0;
    border-radius: 6px;
}
.lisamine form input[type="submit"] {
    width: 50%;
    background: linear-gradient(to right, #ffb3c6, #ff99aa);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
.lisamine form input[type="submit"]:hover {
    background: linear-gradient(to right, #ff99aa, #ff66a3);
    transform: scale(1.05);
}
