@import "./loader.css";
@import "./tabs.css";

:root {
    --font-family-sans-serif: "Montserrat", sans-serif;
    --primary: #d3620c;
}

tr.is-disabled {
    background-color: #f8f9fa !important;
    opacity: 0.6;
}

.table.table-borderless {
    tr:hover {
        td {
            background-color: white !important;
        }
    }

    tbody > tr {
        td {
            padding: 0.5rem 0;
        }
    }
}

.link-blue {
    color: #006fee;
    font-weight: 600;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.gap-4 {
    gap: 1.5rem;
}

.gap-5 {
    gap: 2rem;
}

.link-blue:hover {
    color: #006fee;
    opacity: 0.7;
}

.text-blue {
    color: #2563eb;
}
.btn.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
input[type="radio"] {
    accent-color: var(--primary);
}

html {
    height: 100% !important;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-sans-serif) !important;
}

h1 {
    font-weight: 600;
}

.clean-link {
    text-decoration: none;
    color: inherit;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.clean-link[disabled] {
    pointer-events: none !important;
    cursor: not-allowed !important;
}

.clean-link:hover {
    text-decoration: none;
    background-color: #f4f9ff !important;
    border-color: #e2ecff !important;
}

.text-muted {
    color: #64748b !important;
}

.hide-embed .trix-button--icon-attach,
.hide-attachments .trix-button--icon-embed {
    display: none;
}

.form-check.has-description label {
    flex: 1;
}

.form-check-label .title {
    font-size: 0.875rem;
}

.form-check-label .description {
    font-size: 1.25rem;
}

.nav.nav--tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav.nav--tab li {
    flex: 1;
}

.nav.nav--tab li a {
    text-align: center;
    color: #9ca3af;
    transition: color 0.3s ease;
    border-bottom: 2px solid #9ca3af;
}

.nav.nav--tab li a.active {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
}
