* {
    margin: 0;
    padding: 0;
}

:root {
    --highlight: #1a5858;
    --highlight2: #083434;
    --highlightTransparent: #08343410;
}

body {
    overflow: auto;
}

table th,
table td {
    min-width: fit-content !important;
}

dialog {
    border: none;
    outline: none !important;
    background-color: #f5f5f5;
    width: 100%;
    max-width: 500px;
    place-self: center !important;
    border-radius: 15px;
    box-shadow: 0px 5px 5px rgba(128, 128, 128, 0.3);
    padding: 1.5rem;
}

dialog::-webkit-scrollbar {
    width: 6px;
}

dialog::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #DDDDDD;
    backdrop-filter: blur(0.5rem);
}

input[type="checkbox"] {
    appearance: none;
    border: 1px solid #BCBCBC;
    border-radius: 3px;
    background: transparent;
    width: 18px;
    height: 18px;
}

input[type="checkbox"]:checked {
    background: var(--highlight);
    border-color: var(--highlight);
    position: relative;
}

/* Style the checkbox when checked */
input[type="checkbox"]:checked::after {
    display: block;
    content: "";
    width: 10px;
    height: 5px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}