/* static/css/styles.css */
/* Updated styles.css for a professional dark theme */

body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2, h3 {
    font-weight: 600;
}

.card {
    border: none;
    border-radius: 10px;
}

.btn-primary {
    background-color: #1f6feb;
    border-color: #1f6feb;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-primary:hover {
    background-color: #1158c7;
    border-color: #1158c7;
}

.navbar-dark .navbar-brand {
    font-weight: bold;
	font-size: 36px;
	margin: auto;
	width: 50%;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.table-dark th, .table-dark td {
    border-color: #343a40;
}

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

.list-group-item {
    border: none;
    border-radius: 5px;
}

.alert {
    border-radius: 5px;
}

@media (max-width: 768px) {
    h1, h2, h3 {
        font-size: 1.2rem;
    }

    .card {
        margin: 0 10px;
    }

    .btn-outline-light {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* Additional custom styles for better aesthetics */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.9);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255,255,255,1);
}

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

.list-group-item {
    border-radius: 5px;
}

.alert {
    border-radius: 5px;
}

.bg-dark {
    background-color: #1e1e1e !important;
}

.bg-secondary {
    background-color: #2c2c2c !important;
}

.text-muted {
    color: #6c757d !important;
}

.btn-outline-light {
    border-color: #6c757d;
    color: #ffffff;
}

.btn-outline-light:hover {
    background-color: #6c757d;
    color: #ffffff;
}
