html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.background-container {
    position: relative;
    background-image: url('../images/main_students.jpg'); /* Path to your background image */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 20px;
}

.background-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.90); /* White overlay with 90% opacity */
        z-index: 0;
    }

.background-container form {
        position: relative;
        z-index: 1;
    }

.pagination-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 20px; /* Space from the content above (optional) */
}

.pagination {
    display: flex;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.page-item {
    margin: 0 5px; /* Add space between page items */
}

.page-link {
    text-decoration: none; /* Remove underline from links */
    display: block;
    padding: 10px 15px;
    color: #007bff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.page-link:hover {
    background-color: #f1f1f1;
}

.table-condensed tr {
    line-height: 0.6; /* Adjust line height to reduce vertical spacing */
    padding-top: 2px; /* Reduce top padding */
    padding-bottom: 2px; /* Reduce bottom padding */
}

.toast {
    position: fixed;
    top: 10%; /* Adjust the position */
    left: 50%;
    transform: translate(-50%, 0); /* Keep it centered */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    background-color: #F5F5F5; /* Pale green background for the toast */
    border: 1px solid #c3e6cb; /* Slightly darker green border */
    z-index: 1050; /* Ensure it is above other elements */
    font-size: 1.25rem; /* Increase font size */
}

.toast-header {
    background-color: #c3e6cb; /* Darker green for header */
    font-size: 1.25rem; /* Increase header font size */
}

.toast-body {
    background-color: #F5F5F5; /* Pale green for the body */
    color: #155724; /* Dark green text for contrast */
    font-size: 1.20rem; /* Increase body font size */
}



