﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

.btn-primary.custom-btn {
    background-color: #83BBE5;
    border-color: #000;
    color: #494949;
    width: 315px;
    border-radius: 25px;
}


/* Center the spinner container using flexbox */
/*.spinner-container {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);*/ /* Semi-transparent background */
/*z-index: 1000;*/ /* Make sure it's on top of everything */
/*}*/

/* Styles for the spinner */
/*.spinnernew {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}*/


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);*/ /* Semi-transparent background */
/*z-index: 1000;*/ /* Make sure it's on top of everything */
/*}*/

.spinner-container {
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    position: fixed; /* Fixed positioning to stay centered */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000; /* Make sure it's on top of everything */
}

.overlaynew {
    display: none; /* Initially hidden */
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

/* Styles for the spinner */
.spinnernew {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}
