@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;300;400;500;600;700;800&display=swap');

:root {
    --bs-primary: #7829DC;
    --bs-primary-rgb: 120, 41, 220;
    --lavcon-black: #333333;
    --bs-primary-hover: #a74fdc;
    --lavcon-white: #FFF;
}

* {
    font-family: 'Work Sans', sans-serif;
}

body {
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}


form {
    display: flex;
    flex-direction: column;
    row-gap: 1em;
}

.logo {
    width: 260px;
    height: auto;
}

tr td:not(#calendar tr td) {
    padding: 1em !important;
}

tr th:not(#calendar tr th) {
    padding-left: 1em !important;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--lavcon-black);
}

::-webkit-scrollbar-thumb {
    background: rgba(var(--bs-primary-rgb), 0.8);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--bs-primary-rgb), 1);
}

textarea:focus,
input:focus {
    outline: none;
}

input,
select {
    /* border-radius: 10px !important; */
    border: 1px solid #aaa !important;
}

input[type="checkbox"] {
    accent-color: var(--bs-primary)
}

.page-link{
    cursor:pointer;
    color: var(--bs-primary);
    background-color: transparent;
}

.page-link:hover{
    color: var(--bs-white);
    background-color: var(--bs-primary-hover);
    border-color: var(--bs-primary-hover);
}

.page-item.active .page-link{
    background-color: var(--bs-primary);
    color:var(--lavcon-white);
    border-color: var(--bs-primary);
}

.page-link-black{
    color: var(--lavcon-black);
}


/* hide default styles */
input[type="radio"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--bs-primary);
  }
  
  input[type="radio"]:checked::before {
    transform: scale(1);
  }

input[type="submit"]:disabled{
    background-color: var(--bs-primary); 
}

.pdf-list li{
    list-style-type: none;
}

.dropdown-toggle:disabled,.dropdown-toggle:focus, .dropdown-toggle:active {
    border-color: var(--bs-primary) !important;
    background-color: var(--bs-primary) !important;
}

.bg-info{
    background-color: var(--bs-primary) !important;
}
.squared{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}