/* Удаление сотрудника */
.delete-employee span {
    color: #9F9F9F;
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
    margin-left: 5px;
}

.delete-employee button {
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* Добавить сотрудника */
.add-employee {
    background-color: #FFC610;
    border-radius: 8px;
    padding: 12px 15px;
    transition: 0.2s ease;
    cursor: pointer;
}

.add-employee:hover {
    background-color: #F2BE0F;
}

.add-employee a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-employee a span {
    color: #222222;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.add-employee a img {
    width: 18px;
    height: 18px;
}


/* Выпадающий список */
.block.dropdown--add-employee {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.dropdown-input-wrapper--add-employee {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-input-wrapper--add-employee input {
    width: 100%;
    padding: 10px;
    padding-right: 35px;
    border: 1px solid #9F9F9F;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    color: rgba(67, 66, 66, 1);
    cursor: pointer;
}

.dropdown-input-wrapper--add-employee input:focus {
    border: 1px solid rgba(67, 66, 66, 1);
}

/* Стрелка */
.dropdown-arrow--add-employee {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.dropdown--add-employee.open .dropdown-arrow--add-employee {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-list--add-employee {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    border: 1px solid #9F9F9F;
    border-radius: 8px;
    margin-top: 5px;
    background-color: #fff;
    z-index: 10;
}

.dropdown-list--add-employee.show {
    max-height: 300px;
    opacity: 1;
    overflow-y: auto;
}

.dropdown-item--add-employee {
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.dropdown-item--add-employee:hover {
    background-color: #f0f0f0;
}

/* Форма */
.h2--add-employee {
    padding-top: 25px;
}

.add-employee-container {
    padding-top: 25px;
}
