body {
    background-color: rgb(250, 250, 250);
    padding: 1rem 10vw;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media screen and (max-width: 560px) {
    body {
        padding: 1rem 1rem;
    }
    header {
        flex-direction: column;
        align-items: center;
    }
}

.container {
    background-color: rgb(255, 255, 255);
    /* border: 1px solid rgba(9,9,11,.1); */
    border-radius: 8px;
    box-shadow: 0px 0px 0px 1px rgba(9,9,11,.07),0px 2px 2px 0px rgba(9,9,11,.05);
    padding: 2rem;
}

.vsg-btn, button, input::file-selector-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    background-color: rgba(9, 9, 11, 0.9);
    color: rgb(255, 255, 255);
    padding: 6px 11px;
    outline: none;
    border: 1px solid rgba(9, 9, 11, 0.9);
    box-shadow: inset 0 1px hsla(0,0%,100%,.15);
    border-radius: 8px;
    isolation: isolate;
    text-decoration: none;
}

.vsg-btn:hover {
    background-color: rgba(9, 9, 11, 0.85);
}


.vsg-btn-light {
    background-color: rgb(255, 255, 255);
    background-color: rgb(250, 250, 250);
    border-color: rgba(9,9,11,.1);
    color: rgb(9, 9, 11);
    
}
.vsg-btn-light:hover {
    background-color: rgba(9,9,11,.1);
}
.vsg-btn-danger {
    background-color: rgb(224, 60, 60);
    border-color: rgba(190,32,32,.8);
}
.vsg-btn-danger:hover {
    background-color: rgba(224, 60, 60, 0.9);
}
.vsg-btn-warning {
    background-color: rgba(245,158,11,.8);
    border-color: rgba(245,158,11,.8);
    color: rgb(69 26 3);
}
.vsg-btn-warning:hover {
    background-color: rgba(245,158,11,.7);
}
.vsg-btn-success {
    background-color: rgba(21,128,61,.9);
    border-color: rgba(21,128,61,.9);
}
.vsg-btn-success:hover {
    background-color: rgba(21,128,61,.8);
}

input, textarea {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid rgba(9,9,11,.1);
    border-radius: 8px;
    padding: 8px 11px;
    width: fit-content;
    flex-grow: 1;
    width: 100%;
}

.fake-input {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid rgba(9,9,11,.1);
    border-radius: 8px;
    padding: 8px 11px;
    width: fit-content;
    flex-grow: 1;
    background-color: rgb(250, 250, 250);
    cursor: not-allowed;
    color: rgba(9,9,11,.5);
}

input:disabled, .fake-input {
    background-color: rgb(250, 250, 250);
    cursor: not-allowed;
}

input.is-invalid, textarea.is-invalid {
    border-color: rgba(245,101,101, 1);
}

.invalid-feedback {
    color: rgba(245,101,101, 1);
    font-size: 14px;
    font-style: italic;
}

select {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid rgba(9,9,11,.1);
    border-radius: 8px;
    padding: 6px 11px;
    color: rgb(9, 9, 11);
    background-color: rgb(250, 250, 250);
}
select:hover {
    border-color: rgba(9,9,11,.2);
}


header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    align-items: center;
    /* padding: 1rem 15vw; */
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    box-shadow: 0px 0px 0px 1px rgba(9,9,11,.07),0px 2px 2px 0px rgba(9,9,11,.05);
    gap: 4px;
}



/* table {
    border: 1px solid rgba(9,9,11,.1);
    border-radius: 8px;
    padding: .5rem;
} */

table {
    border-collapse: collapse;
}

th,td {
    font-size: 14px;
    border-bottom: 1px solid rgba(9,9,11,.1);
    padding: 8px;
    color: rgb(113 113 122);
    text-align: left;
}

.vsg-badge {
    width: fit-content;
    background-color: #d1e7dd;
    color: #0a3622;
    border: 1px solid rgb(163, 207, 187);
    padding: 5px 11px;
    border-radius: 4px;
    font-weight: 600;
}

tr:last-child>th,tr:last-child>td {
    padding-top: 16px;
    border-bottom: none;
}

.clickMenu {
    position: relative;
    width: fit-content;
    
}

.clickMenuBody {
    z-index: 25;
    display: none;
    position: absolute;
    top: 50%;
    right: calc(100% + 8px);
    background-color: rgb(255, 255, 255);
    flex-direction: column;
    padding: 6px;
    border-radius: 8px;
    width: fit-content;
    color: rgb(9, 9, 11);
    border: 1px solid rgba(9,9,11,.1);
    transform: translateY(-50%);
}

.clickMenuBody .clickMenuItem {
    font-size: 14px;
    font-weight: 400;
    font-family: Inter;
    outline: none;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: white;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 4px;
    color: black;
}
.clickMenuItem * {
    z-index: 99;
}
.clickMenuItem:hover, .clickMenuItem:hover > i {
    background-color: #3b82f6;
    color: white;
}
.clickMenu.active .clickMenuBody {
    display: flex;
}

.color-green {
    color: green;
}


.successAlert, .failedAlert {
    display: flex;
    font-weight: 600;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    padding: 1.3rem 2rem;
}

.failedAlert {
    background-color: #e7d5d1;
    color: #36140a;
    border: 1px solid rgb(207, 172, 163);
}
.successAlert {
    background-color: #d1e7dd;
    color: #0a3622;
    border: 1px solid rgb(163, 207, 187);
}
.successAlert #closeIcon {
    cursor: pointer;
}

.sticky-bottom {
    background-color: white;
    position: sticky;
    bottom: 0;
    z-index: +1;
}
.sticky-top {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: +1;
}