body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 600;
    line-height: 1.2;
}

p {
    text-align: justify; /* optional, only if you want justified text */
}

.jumbotron hr {
    border-top: 1px dashed #ccc;
    border-bottom: none;
}

.alert {
    text-align: left;
    padding: 1rem;
    margin: 2rem 0;
    background-color: whitesmoke;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

#option-layout {
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: 0px;
}

#option-layout::-webkit-scrollbar{
    display: none;
}

.container {
    --bs-gutter-x: 12rem;
    padding-right: calc(var(--bs-gutter-x));
    padding-left: calc(var(--bs-gutter-x));
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    margin-left: calc(var(--bs-gutter-x) * -1);
    margin-right: calc(var(--bs-gutter-x) * -1);
    padding: 3rem 12rem;
}

.button{
    height: fit-content;
    width: fit-content;
    padding: 0.5rem 0.7rem;
    font-size: 1rem;
    text-decoration: none;
    color: white;
    background-color: #3080b1;
    border: 1.5px solid #196dae;
    font-weight: 500;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.button.outlined {
    border: 1px solid #084f85;
    background-color: white;
    color: #084f85;
}

.button:focus-visible {
  box-shadow: 0 0 0 3px #2563eb66;
}

.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.button:hover {
    background-color: #084f85;
    color: white;
    transform: translateY(-4px);
    transition: all 0.2s ease;
}

.button.danger {
    background-color: #d15e5e;
    border: 1px solid #d15e5e;
    color: white;
}

.button.danger:hover {
    background-color: rgb(228, 57, 57);
}

.button.success {
    background-color: #509450;
    border: 1px solid #509450;
    color: white;
}

.button.success:hover {
    background-color: rgb(61, 168, 61);
}

.button.warning {
    background-color: #a1805a;
    border: 1px solid #a1805a;
    color: black;
}

.button.warning:hover {
    background-color: #d8984f;
}

@media (max-width: 700px) {
    .container-fluid {
        margin-left: calc(var(--bs-gutter-x) * -1);
        margin-right: calc(var(--bs-gutter-x) * -1);
        padding: 3rem 2rem;
    }

    .container {
        --bs-gutter-x: 2rem;
    }

    p{
        text-align: left;
    }

    .button {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .button {
        font-size: 0.8rem;
    }
}

@media (max-width: 500px) {
    .button {
        font-size: 0.7rem;
    }
}

main {
    flex-grow: 1;
}
