@import url('https://fonts.googleapis.com/css2?family=Headland+One&family=Lato:wght@100;400&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body{
    font-family: "Montserrat";
}

.btn-green{
    background: #46BEBE;
}
.btn-green:disabled{
    background: #46BEBE;
    border-color: transparent;
}
.btn-green:hover{
    background: #1bd7d7;
}
.btn-green-light{
    color: #fff;
}
.btn-green-light:hover{
    color: #fff;
}
.section{
    box-shadow: 0px 10px 20px 2px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.input:focus{
    border-color: rgba(70, 190, 190, 0.66);
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(70, 190, 190, 0.16);
}
.link-green{
    transition: all 0.3s ease 0s;
    color: rgb(0, 87, 68);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.link-green-light{
    transition: all 0.3s ease 0s;
    color: #46BEBE;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.link-green-hover{
    transition: all 0.3s ease 0s;
}
.link-green-hover:hover{
    color: #038f8f !important;
}
.link-green-hover-underline:hover{
    border-color: #0ca678;
    color: #0ca678;
}
.list-links{
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 1rem;
}
.list-links li{
    list-style: none;
}
.list-links li::before {
    content: "- ";
}
.table thead th{
    white-space: nowrap;
}
.table-responsive{
    border-radius: 8px;
    border: 1px solid #1bd7d7;
    overflow: auto;
}
.table{
    margin: 0;
}
.alert-success{
    background: rgb(70, 190, 190);
}

.btn-outline-dark svg{
    transition: all 0.3s ease 0s;

}
.btn-outline-dark:hover svg{
    stroke: #fff;
}
.alert {
    transition: opacity 0.5s ease-out;
    opacity: 1;
}

.alert.fade {
    opacity: 0;
}
textarea{
    resize: none;
}
.item:hover {
    background-color: rgba(70, 190, 190, 0.2); /* Ярко-зеленый светлый фон */
}
.selected_values{
    color: #46BEBE;
    font-weight: 600;
}
.custom-hover:hover {
    background-color: #d1f3ef !important; /* светло-зеленоватый фон */
}