/* Custom Styles for Better UI */

/* General Body Styles */
body {
    background-color: #f8f9fa;
    font-family: 'Nunito', sans-serif;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.btn-primary {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Table Styles */
.table {
    margin-top: 20px;
}

.table th, .table td {
    padding: 15px;
    text-align: left;
}

.table th {
    background-color: #007bff;
    color: white;
}

.table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Form Styles */
.form-control {
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #007bff;
}
