﻿html {
    overflow: hidden;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.container {
    flex: 1;
}

.fullHeight {
    min-height: 100vh;
}

.bgWhite {
    background: white !important;
}

.colorWhite {
    color: white !important;
}

/* Input Styles */
.input {
    background-color: #fafafa;
    border: 1px solid #ddd;
    color: #333;
    box-shadow: none;
    padding-left: 1.5rem !important;
    height: 3rem;
}

.input::placeholder {
    color: #999;
    opacity: 1;
}

/* Input Focus Effect */
.input:focus {
    background-color: #fff;
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(74,124,89,0.2);
}

/* Select Styles */
.select select {
    background-color: #fafafa;
    border: 1px solid #ddd;
    color: #333;
    box-shadow: none;
    padding-left: 1.5rem; /* same as your inputs */
    /*height: 3rem;*/ /* match input height */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* arrow color */
.select::after {
    border-color: #333 transparent transparent transparent;
}

/* Select Focus Effect */
.select select:focus {
    background-color: #fff;
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(74,124,89,0.2);
}

/* Optional: adjust the dropdown arrow position */
.select.is-small::after {
    right: 0.75em;
}

.select.is-medium::after {
    right: 1em;
}

.select.is-large::after {
    right: 1.25em;
}

.breadcrumb a {
    color: white; /* same as your .input text */
    font-weight: 500;
}

/* Breadcrumb separator (“/”) color */
.breadcrumb li + li::before {
    color: white; /* same as your placeholder */
}

/* Active (last) crumb */
.breadcrumb .is-active a {
    color: white; /* highlight with your accent */
}

/* Hover state */
.breadcrumb a:hover {
    color: white;
}

/* If you want to change icon color too */
.breadcrumb .icon i {
    color: white;
}

.logoutContainer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hidden {
    display: none;
}

.table thead tr:hover {
    background: none !important;
}

.modal-card-foot {
    background: rgb(20, 22, 26) !important;
}

.modal-card-head {
    box-shadow: none !important;
}
