﻿html {
    --custom-color: rgba(255, 130, 0, 1);
    font-size: 16px !important;
}

body {
    font-family: Assistant;
    font-size: 16px !important;
}

.clickable {
    cursor: pointer;
}

    .clickable:hover {
        opacity: 0.8;
    }

.simple-button {
    border-radius: 6px;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    font-weight: 400;
    min-width: 100px;
    outline: none;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
}

    .simple-button:hover {
        opacity: 0.5;
    }

    .simple-button:disabled {
        cursor: default;
        opacity: 0.5;
    }

    .simple-button.primary {
        background-color: var(--custom-color);
        border-color: var(--custom-color);
        color: #ffffff;
    }

    .simple-button.secondary {
        border-color: var(--custom-color);
        color: var(--custom-color);
    }

.table-button {
    border-radius: 6px;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    font-weight: 400;
    outline: none;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
}

    .table-button:hover {
        opacity: 0.5;
    }

    .table-button:disabled {
        cursor: default;
        opacity: 0.5;
    }

    .table-button.primary {
        background-color: var(--custom-color);
        border-color: var(--custom-color);
        color: #ffffff;
    }

    .table-button.secondary {
        background-color: #ffffff;
        border-color: var(--custom-color);
        color: var(--custom-color);
    }

.modal-title {
    font-size: 1.5rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.modal-header .fa-close {
    cursor: pointer;
    font-size: 20px;
}