* {
    margin: 0;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

.modal-wrapper {
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background: rgba(52, 64, 84, 0.2);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
}

.modal {
    background-color: var(--theme-second-background);
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
    border-radius: 12px;
    padding: 20px;
    width: 400px; /* Could be more or less, depending on screen size */
}

.show-modal {
    display: flex;
}

.btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 18px;
    background: var(--theme-second-background);
    border: 1px solid var(--theme-border-color);
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    cursor: pointer;
    color: var(--theme-font-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    width: 150px;
}

.buttons-modal-wrapper {
    padding-top: 32px;
    justify-content: space-between;
}

.button-modal-ok {
    background: var(--main-color);
    border: 1px solid var(--second-color);
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    color: #FFFFFF;
}

.input-default {
/*    width: 300px;*/
    padding: 10px 14px;
    border: 1px solid var(--theme-border-color);
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    background-color: var(--theme-second-background);
    color: var(--theme-font-color);
}

.input-default::placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--theme-second-font-color);
}

.input-default-error {
    border: 1px solid #FE2D29;
}

.label-input-default {
    padding-bottom: 6px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #344054;
    font-family: 'Inter', sans-serif;
}

.input-default-wrapper {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

.input-default-select {
    width: 330px;
    padding: 10px 14px;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
}

table {
    width: 100%;
}