/* static/css/project.css */
body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #343a40;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h2, h3 {
    color: #343a40;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.table {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 1.5rem;
}

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

.table th {
    background-color: #007bff;
    color: #fff;
    font-weight: 600;
}

.table td {
    background-color: transparent;
}

.table tbody tr:hover {
    background-color: #e9ecef;
}

.table a {
    text-decoration: none;
}

.table a:hover {
    text-decoration: underline;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 8px 16px;
}

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

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    padding: 8px 16px;
}

.form-label {
    font-weight: 500;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.form-control, .form-check-input {
    border-radius: 5px;
}

.alert {
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-dismissible .btn-close {
    padding: 1rem;
}