@import url('bootstrap.min.css');
@import url('bootstrap-icons.css');

/* Custom Styling for the Table */
.table th, .table td {
	vertical-align: middle;
}

.table th {
	background-color: #f8f9fa;
	border-color: #dee2e6;
}

.table-bordered {
	border: 1px solid #dee2e6;
}

.table td {
	border-top: 1px solid #dee2e6;
}

.table-hover tbody tr:hover {
	background-color: #f1f1f1;
}
/* Button group styling */
.btn-group .btn {
	font-size: 0.9rem;
}
/* Pagination button styling */
.pagination .page-item .page-link {
	color: #495057;
	border-radius: 50%;
}

.pagination .page-item.active .page-link {
	background-color: #007bff;
	border-color: #007bff;
}

.pagination .page-link:hover {
	background-color: #0056b3;
	color: #fff;
}

.container-form {
	max-width: 900px;
	margin: 0 auto; /* Horizontally center the form */
	padding-top: 20px; /* Optional: Add some space at the top */
}
/* FOOTER Styles: */
footer {
    background-color: #343a40; /* Dark background */
    padding-top: 30px;
    padding-bottom: 30px;
    color: white; /* Ensures text is white on dark background */
}

footer .container {
    max-width: 1140px; /* Limit to max 1140px width */
    background-color: #343a40; /* Match background color of footer */
    margin: 0 auto; /* Center horizontally */
    padding-left: 15px; /* Some padding for left */
    padding-right: 15px; /* Some padding for right */
}

footer .social-icons i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: white; /* Ensure icons are white */
}

footer .quick-links a {
    text-decoration: none;
    color: white; /* Link text color */
    display: block;
    padding: 5px 0;
}

footer .quick-links a:hover {
    color: #ff5733; /* Highlight color on hover */
}

footer .row {
    display: flex;
    justify-content: space-between;
}

footer .social-icons,
footer .quick-links {
    flex: 1;
}

/* Ensure footer sticks to the bottom if needed */
.footer-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer-content {
    flex-grow: 1;
}