/* Kuramo House Style */
:root {
    --primary-color: #172129;
    --secondary-color: #7FC256;
    --red: #dc3545;
    --blue: #344a5c;
    --dark-green: #4D8A2A;
    --orange: #FFA500;

    --font-family: "Francois One", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
    /*background-color: var(--blue);*/
    font-family: var(--font-family), sans-serif;
}

.prim-bg {
    background-color: var(--primary-color) !important;
}
.prim-text {
    color: var(--primary-color) !important;
}

.sec-bg {
    background-color: var(--secondary-color) !important;
}
.sec-text {
    color: var(--secondary-color) !important;
}

.dark-green-bg {
    background-color: var(--dark-green) !important;
}

.dark-green-text {
    color: var(--dark-green) !important;
}

.nav-wrapper ul li.active a {
    position: relative;
}

.nav-wrapper ul li.active a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.kuramo-text {
    margin-right: 1rem;
    font-family: "Francois One", sans-serif;
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: #fff !important;
    text-shadow: 1px 1px 1px var(--primary-color);
}

.displayNone {
    display: none !important;
}

.pointer {
    cursor: pointer;
}

.w-80 {
    width: 80% !important;
}

/** margins & padding */
.m-10 {
    margin: 10px !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.mt-5 {
    margin-top: 5px !important;
}
.mt-10 {
    margin-top: 10px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}
.mb-5 {
    margin-bottom: 5px !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}

.mr-8 {
    margin-right: 8px !important;
}
.mr-10 {
    margin-right: 10px !important;
}

/* font sizes */
.fs-12 {
    font-size: 12px !important;
}
.fs-14 {
    font-size: 14px !important;
}
.fs-16 {
    font-size: 16px !important;
}
.fs-18 {
    font-size: 18px !important;
}
.fs-20 {
    font-size: 20px !important;
}
.fs-22 {
    font-size: 22px !important;
}
.fs-24 {
    font-size: 24px !important;
}
.fs-26 {
    font-size: 26px !important;
}
.fs-28 {
    font-size: 28px !important;
}
.fs-30 {
    font-size: 30px !important;
}
.fs-32 {
    font-size: 32px !important;
}


/* font weights */
.fw-500 {
    font-weight: 500 !important;
}
.fw-600 {
    font-weight: 600 !important;
}
.fw-700 {
    font-weight: 700 !important;
}

.custom-badge {
    padding: 0 10px !important;
    border-radius: 10px !important;
}

input, textarea, .chips, select {
    border: 1px solid #000 !important;
    border-radius: 5px !important;
    text-indent: 5px !important;
    max-width: 100%;
}

.to-be-filled {
    border: 1px solid var(--orange) !important;
}

.tabs .tab a {
    color: var(--primary-color);
}

.tabs .tab a.active,
.tabs .tab a:hover {
    color: var(--secondary-color);
}

.tabs .indicator {
    background-color: var(--secondary-color);
}

.tabs-wrapper {
    position: relative;
}

.tabs {
    margin-bottom: 0;
}

.collapsible-body {
    overflow: hidden;
}

textarea.materialize-textarea {
    min-height: 8rem;
}

.signature-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 450px; /* Prevents excessive width */
    margin: 0 auto;
}

.signature-pad {
    width: 100%;
    max-width: 450px;
    height: 100px;
    border: 1px solid #000;
    touch-action: none; /* Prevents scrolling while signing */
}

.orange option,
.green option,
.red option {
    background-color: #fff !important;
}
