html {
    font-size: 12px;
    font-family: serif, sans-serif, script;
}

@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 @media (max-width: 991.98px) {
    .navbar-nav .nav-link

{
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #444;
}

.navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
}

}

  position: relative;
  min-height: 100%;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
    background-image: radial-gradient(#ddd 1px, transparent 1px);
}

.BoldText{
    font-weight:100px;
}

.navbar-nav {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.navbar-nav .nav-item {
    margin-right: 20px; /* Adds space between each <li> */
}
.ul{
    color:black;
}
.li {
    list-style-type: none;
}
.ul li{
    color:black;
    list-style-type: none; /* Remove default bullet points */
    position: relative; /* Positioning for the icon */

}

.liststyle {
    list-style-type: none;
}
/* site.css */
.sidebar {
    height: 100vh; /* Full-height */
    position: fixed; /* Stay in place */
    top: 0;
    left: 0;
    padding-top: 1rem;
    overflow-x: hidden;
    border-right: 1px solid #ddd;
    background-color: #dcdcdc;
}

.card {
    border: 1px solid #d1e7fd;
    background-color: #f9fafe;
}

.text-primary {
    color: #0056b3 !important;
}

input.form-control {
   /* border: 1px solid #007bff;
    background-color: #eaf4ff;*/
}

    input.form-control:focus {
        border-color: #0056b3;
        box-shadow: 0 0 5px rgba(0, 91, 187, 0.5);
    }

.table-hover tbody tr:hover {
    background-color: #d1e7fd;
}

.btn-primary {
    background-color: #007bff;
    border-color: #0056b3;
}

    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #003d80;
    }




/* Card Styling */
.card {
    border: 1px solid #d1e7fd;
    border-radius: 10px;
    background-color: #f9fafe;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    /* Form Headings */
    .card h2 {
        font-family: 'Segoe UI', sans-serif;
        color: #0056b3;
        font-weight: bold;
    }

/* Labels */
label {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    color: #0056b3;
}

/* Input Fields */
.form-control {
    /*border: 1px solid #007bff;*/
   /* background-color: #eaf4ff;*/
   /* color: #003d80;*/
    transition: all 0.3s ease;
}

    .form-control:focus {
       /* border-color: #0056b3;*/
      /*  box-shadow: 0 0 5px rgba(0, 91, 187, 0.5);*/
        background-color: #ffffff;
    }

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #0056b3;
    font-weight: bold;
}

    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #003d80;
    }

/* Table in Modal */
.table-hover tbody tr:hover {
    background-color: #d1e7fd;
}

/* Modal Header */
.modal-header {
    background-color: #f9fafe;
    border-bottom: 1px solid #d1e7fd;
}

.modal-title {
    color: #0056b3;
    font-weight: bold;
}

/* Modal Footer */
.modal-footer {
    background-color: #f9fafe;
    border-top: 1px solid #d1e7fd;
}

/* Error Message */
#errorMessage {
    font-size: 14px;
    font-weight: bold;
}
   
.floating-button {
    position: fixed;
    bottom: 20px; /* Adjust as needed */
    right: 20px;  /* Adjust as needed */
    width: 60px;
    height: 60px;
    background-color: #ff4081; /* Pink background */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    font-size: 24px;
    z-index: 1000; /* Ensures the button is on top of other content */
    transition: background-color 0.3s ease;
}

.floating-button:hover {
    background-color: #e040fb; /* Hover effect */
}

/* Optional: Adding Font Awesome icon styles (if using Font Awesome) */
.floating-button i {
    color: white;
    font-size: 30px; /* Size of the icon */
}
