html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.lblcolon {
    float: right;
    padding-top: 9px;
}

.fmcontrol {
    padding-top: 9px;
}
.space {
    padding: 5px;
}


@media only screen and (max-width: 767px) {
    span.lblcolon {
        display: none;
    }
}

/* Hide span.lblcolon on laptop screen sizes */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    span.lblcolon {
        display: none;
    }
}

/*.card{
    height:100vh!important;
}*/

/*Login Page */

.lgmaindiv {
    width: 20rem;
    height: 50% !important;
}



@media only screen and (min-width: 768px) and (max-width: 1024px) {
    Card{
        width:18rem;
    }
}


.table-responsive {
    width: 100%; /* Ensure the table takes the full width of the parent container */
    overflow-x: auto; /* Allow horizontal scrolling if needed on small screens */
}


.custom-hr {
    border: 1px solid #7571f9 !important; /* Custom blue border */
}

.custom-border-success {
    border: 2px solid #28a745 !important; /* Custom green border */
}

.custom-border-primary {
    border: 2px solid #7571f9 !important; /* Custom blue border */
}

.custom-btn-border {
    border: 2px solid #ff6347; /* Custom border color for buttons */
}

.custom-table th {
    padding: 7px !important;
    align-items: center !important;
    text-align: center; /* Horizontally center the text */
    vertical-align: middle; /* Vertically center the text */
}

.custom-table td {
    text-align: center; /* Horizontally center the text */
    vertical-align: middle; /* Vertically center the text */
    align-items: center !important;
    padding: 3px !important; /* Reduce padding to reduce row height */
}

.custom-form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.3s ease, background-color 0.3s ease; /* Smooth transition for border and background color */
}

    /* Focus Effect */
    .custom-form-control:focus {
        outline: none;
        border-color: #80bdff; /* Light blue border color when focused */
        box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.25); /* Blue shadow around the input when focused */
    }

    /* Hover Effect */
    .custom-form-control:hover {
        border-color: #007bff; /* Change border color on hover */
        background-color: #f1f9ff; /* Light blue background on hover */
    }

    /* Optional: Active focus effect */
    .custom-form-control:active {
        border-color: #0056b3;
        background-color: #e7f3ff;
    }

