body {
    font-family: 'Arial', sans-serif;
    background-color: #5d96ed72; 
    margin: 0;
    padding: 0;
}


.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(0, 255, 72, 0.574);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


h2 {
    font-size: 28px;
    text-align: center;
    color: #0066cc; 
    margin-bottom: 30px;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #ffcc00; 
    color: #003366; 
}

table tr:hover {
    background-color: #ffeb99; 
}


.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin: 5px;
}

.btn-success {
    background-color: #28a745; 
    color: white;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-warning {
    background-color: #ffcc00; 
    color: white;
}

.btn-warning:hover {
    background-color: #e0a800;
}

.btn-danger {
    background-color: #dc3545; 
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
}


form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

form .form-group {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #003366; 
}

input[type="text"], input[type="number"], textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    margin-top: 5px;
}

textarea {
    resize: vertical;
    height: 100px;
}

button[type="submit"] {
    background-color: #cc0000; 
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button[type="submit"]:hover {
    background-color: #005bb5;
}


a {
    text-decoration: none;
}


.stats {
    font-size: 16px;
    margin-top: 20px;
    color: #003366; 
}


.error-message {
    color: red;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}


form {
    margin-top: 20px;
}
