* {
    margin: 0;
    padding: 0;
}

:root {
    /*--main-color: #BDB3FF;*/
    --main-color: #FFAF59;
    /*--disabled-main-color: #7E78A8;*/
    --disabled-main-color: #68676e;
    --main-bg-color: #494949;
    --main-color-filter-2: invert(13%) sepia(39%) saturate(1295%) hue-rotate(317deg) brightness(102%) contrast(101%);
    --main-color-filter-3: invert(57%) sepia(31%) saturate(985%) hue-rotate(330deg) brightness(113%) contrast(112%);
    /*--main-color-filter: invert(77%) sepia(45%) saturate(2247%) hue-rotate(196deg) brightness(103%) contrast(101%);*/
    --main-color-filter: invert(71%) sepia(29%) saturate(965%) hue-rotate(337deg) brightness(104%) contrast(103%);
    --main-disables-color-filter: invert(56%) sepia(17%) saturate(11%) hue-rotate(319deg) brightness(87%) contrast(92%);
}

.arrow {
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin-right: 0.5rem;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.left {
    transform: rotate(134deg);
    -webkit-transform: rotate(134deg);
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.top {
    transform: rotate(223deg);
    -webkit-transform: rotate(223deg);
}

body {
    background-color: antiquewhite;
}

.hidden {
    visibility: collapse;
}

.notDisplaed {
    display: none;
}

option:checked {
    background-color: var(--main-color);
}

.manager_action_container {
    background-color: #fff;
    background-blend-mode: normal;
    box-shadow: 0px 2px 4px rgba(100, 100, 100, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

select {
    background-color: #fff;
    border-top-width: medium;
    border-top-style: none;
    border-top-color: currentcolor;
    border-right-width: medium;
    border-right-style: none;
    border-right-color: currentcolor;
    border-left-width: medium;
    border-left-style: none;
    border-left-color: currentcolor;
    border-image-outset: 0;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;

    border-bottom: 1px solid #bdbdbd;
}

input,
textarea {
    background-color: #fff;

    border-top-width: medium;
    border-top-style: none;
    border-top-color: currentcolor;
    border-right-width: medium;
    border-right-style: none;
    border-right-color: currentcolor;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    border-left-width: medium;
    border-left-style: none;
    border-left-color: currentcolor;
    border-image-outset: 0;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;

    border-bottom: 1px solid #bdbdbd;
}

input::placeholder,
textarea::placeholder,
::-ms-input-placeholder,
input::-moz-placeholder {
    color: black;
}

input[type=text],
input[type=password],
select {
    padding-top: 12px;
    padding-right: 13px;
    padding-bottom: 12px;
    padding-left: 0px;
    margin: 8px 0;
    box-sizing: border-box;
}


input[type=number] {
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

input[type=submit],
button[type=submit] {
    background-color: var(--main-color);
    color: #fff;
    width: fit-content;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

input .invalid {
    border: 2px solid red;
}

.text_selected {
    color: var(--main-color);
}

.text_normal {
    color: grey;
}

.add_btn {
    background-color: var(--main-color);
    color: #fff;
    border-radius: 8px;
    width: 146px;
    height: 32px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#footer {
    margin-top: 4rem;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer p {
    color: silver;
}


#msg_component_container {
    width: 250px;
    height: 100px;
    background-color: antiquewhite;
    border: solid 1px black;
    position: absolute;
    top: 5rem;
    right: 0px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;

    /*background-color:#dbfad7;*/
    /*background-color:#ffb5b5;*/
}

#msg_component_container p{
    margin-left: 5px;
}