.header {
    background-color: #1977d4;
    padding: 10px;
    text-align: center;
    border-radius: 10px; /* Add border radius to round the corners */
}
.footer {
    background-color: #ffffff;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
}
.menu {
    border-radius: 10px; /* Add border radius to round the corners */
}
.content {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 10px; /* Add border radius to round the corners */
    height: 100vh;
}
.cusForm
{
    width: 400px; /* Adjust width as needed */
    margin: 0 auto; /* Center the form horizontally */
    border: 1px solid #ccc; /* Add a border */
    border-radius: 5px; /* Rounded corners */
    padding: 20px; /* Add padding for spacing */
    background-color: #f2f2f2; /* Light background color */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */

}
.height-100{
    height: 80%;
}
.height-5{
    height: 5vh;
}
.height-90{
    height: 90vh;
}
.conHidden{
    display: none !important;
}
.conShown{
    display: block;
}

.required::after {
    content: " *";
    color: red;
    font-weight: bold; /* Optional: to emphasize the asterisk */
}
.app-inner-layout__sidebar{
    width:25% !important;
}
.app-inner-layout__content{
    width:75% !important;
}
.dtr-title::after {
    content: ":";
}
table.dataTable td, table.dataTable th {
    white-space: normal; /* Allows text to wrap */
    word-wrap: break-word; /* Breaks long words to fit within the cell */
}
.col-md-1{
    flex: 1 0 8.33333% !important;
    max-width: 10.33333% !important;
}
.table-hover tbody tr:hover {
    background-color: #f7dfda7a !important;
}
/* Spinner */
/* Spinner overlay */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it appears above all other content */
}

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3; /* Light gray */
    border-top: 5px solid #da624a; /* Blue */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.card-header{
    justify-content: center !important;
}
.cus-justify-item-center{
    justify-items: center !important;
}
.btn-primary{
    background-color: #2e3192 !important;
    border-color: #2e3192 !important;
}
.btn-primary:hover{
    background-color: #05507c !important;
    border-color: #05507c !important;
}
/* Spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
