/* General Styles */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
}

.container {
    margin-top: 20px;
}

.card {
    margin-bottom: 20px;
}

.card-header {
    background-color: #007bff;
    color: #fff;
}

.card-footer {
    background-color: #f8f9fa;
}

/* Table Styles */
.table thead th {
    background-color: #007bff;
    color: #fff;
}

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

/* Button Styles */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

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

/* Form Styles */
.form-control {
    border-radius: 0;
}

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

.form-group label {
    font-weight: bold;
}

.input-group-text {
    background-color: #007bff;
    color: #fff;
}

/* Navigation Bar */
.navbar {
    background-color: #007bff;
}

.navbar-brand, .navbar-nav .nav-link {
    color: #fff;
}

.navbar-brand:hover, .navbar-nav .nav-link:hover {
    color: #e2e6ea;
}

/* Footer Styles 
.footer {
    background-color: blue;
    color: #fff;
    padding: 10px;
    text-align: center;
    bottom: 0;
    width: 100%;
	display:block;
}*/

/* Card Styles */
.card-title {
    font-weight: bold;
}

.card-text {
    color: #6c757d;
}

/* Alerts */
.alert-primary {
    background-color: #cce5ff;
    color: #004085;
    border-color: #b8daff;
}

/* Custom Classes */
.bg-light-gray {
    background-color: #f8f9fa;
}

.text-dark-gray {
    color: #6c757d;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}