/*Font Design*/

@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");

body {
    font-family: "Lato", sans-serif;
    background-color: #f8f9fa;
    color: #6a0dad; /* Violet color for the text */
}

/*Main*/
body {
    /* background-image: url(images/light-background.jpg); */
    background-repeat: repeat-x;
    background-size: cover;
}
html,
body {
    height: 100%;
}
.content {
    min-height: 80%;
}
.bottomdiv {
    width: 100%;
    margin: 0;
    border-top: #e3e3e3 2px solid;
    position: relative;
    clear: both;
    bottom: 0;
}
.buttonstyle1 {
    border: #dcdcdc 1px solid;
    background-color: #ffffff;
    color: #6a0dad;
    font-family: "Lato", sans-serif;
    font-weight: bold;
    font-size: 9pt;
    cursor: pointer;
}
.buttonstyle1:hover {
    background-color: #e0e0ff; /* Light violet */
    color: #4b0082; /* Darker violet */
}
.buttonstyle2 {
    font-family: "Lato", sans-serif;
    font-size: 10pt;
    font-weight: bold;
}
.buttonstyle2:hover {
    color: #4b0082;
}
.menuoption {
    background-color: #ffffff;
    cursor: pointer;
    font-size: 10pt;
    color: #6a0dad;
    font-family: "Lato", sans-serif;
    border-radius: 0;
}
.menuoption:hover {
    background-color: #e0e0ff;
}
.signoutbtn {
    color: #6a0dad;
    background-color: #ffffff;
    border-style: none;
    font-family: "Lato", sans-serif;
    font-size: 10pt;
    font-weight: bold;
    float: right;
    text-decoration: none;
    cursor: pointer;
}
.signoutbtn:hover {
    color: #4b0082;
}
.power {
    font-size: 1rem;
    vertical-align: middle;
    color: #6a0dad;
    font-style: normal;
    font-family: "Lato", sans-serif;
    font-variant: small-caps;
    text-transform: capitalize;
    text-decoration: none;
    text-align: center;
}
.sidebaropt {
    cursor: pointer;
    font-weight: bold;
    font-size: 8pt;
    color: #6a0dad;
    margin-top: 4px;
    padding-top: 5px;
    font-family: "Lato", sans-serif;
    height: 25px;
    background-color: #ffffff;
    text-decoration: none;
    text-align: center;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}
.sidebaropt:hover {
    background-color: #e0e0ff;
}
.options {
    color: #6a0dad !important;
    font-size: 11px;
    font-weight: bold;
    font-family: "Lato", sans-serif;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    background-color: #ffffff;
    border: #dcdcdc 2px solid;
    text-align: center;
}
.options:hover {
    background-color: #e0e0ff;
    color: #4b0082;
}
.optionline {
    border-top: #6a0dad 3px solid;
    margin-top: 0.5rem !important;
    margin-right: 1rem !important;
}
.sideopt {
    margin-left: -1rem !important;
}
.formheader {
    color: #6a0dad !important;
}
.formheader:hover {
    color: #4b0082 !important;
}
.list {
    font-family: "Lato", sans-serif;
    font-size: small;
}
.tableheader {
    background-color: #f2f2f2 !important;
    color: #6a0dad;
}
.tableheader:hover {
    background-color: #e0e0ff !important;
    color: #4b0082;
}

/* Status Button */
.status {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}
.status input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
}
input:checked + .slider {
    background-color: #6a0dad;
}
input:focus + .slider {
    box-shadow: 0 0 1px #6a0dad;
}
input:checked + .slider:before {
    transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}

@media only screen and (min-width: 600px) {
    .mainpage {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
    .pp {
        margin-right: 5rem;
    }
}
@media only screen and (max-width: 600px) {
    .sideopt {
        margin-right: -1rem !important;
    }
    .profilenav {
        margin: -1.5rem;
    }
    .mainopt {
        justify-content: center;
    }
}
.btn-outline-info:hover {
    color: #fff;
    background-color: #b0a5b8 !important;
    border-color: #6a0dad;
}

.btn-outline-info {
    color: #9359bc !important;
    border-color: #6a0dad !important;
}

.alert-success {
    color: yellow !important;
    background-color: #9359bc !important;
    border-color: #6a0dad !important;
    font-size: 16px;
}

.form-control {
    height: calc(2em + .75rem + 2px);
}

.text-green-600{
    color: rgb(10, 97, 10);
    font-weight: bold;
}

.text-red-600{
    color: rgb(170, 16, 16);
    font-weight: bold;
}