


/* EMPLOYEE SEARCH FIELD */

.em-search {
    display: flex;
    justify-content: flex-end;
}

.em-add {
    background: #3cb383;
    margin-right: 5px;
    transition: all 0.5s ease;
}

.em-add:hover {
    background: #199e69;
}

.em-add-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 2px;
    height: 30px;
}

.em-add-link img {
    margin-right: 10px;
    width: 21px;
    filter: invert(100%) sepia(0%) saturate(3516%) hue-rotate(141deg) brightness(126%) contrast(108%);
}

.em-search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.em-input-field {
    padding: 5px 15px;
    background: #fff;
    width: 300px;
    height: 30px;
}

.em-search-submit {
    border-radius: none;
    border: none;
    background: #3cb383;
    height: 100%;
    cursor: pointer;
}

.em-search-submit img {
    width: 18px;
    padding: 0 10px;
    filter: invert(100%) sepia(0%) saturate(3516%) hue-rotate(141deg) brightness(126%) contrast(108%);
}

.em-search-submit img:hover {
    filter: invert(41%) sepia(63%) saturate(493%) hue-rotate(104deg) brightness(93%) contrast(84%);
}





/* EMPLOYEE ITEMS */

.em-main-wrapper {
    padding-top: 120px;
    margin-bottom: 50px;
}

.em-item-wrapper {
    width: 700px;
    display: flex;
    background: #fff;
    margin: 20px 0 35px 0;
    border-radius: 5px;
    overflow: hidden;
}

/* Left Column */
.em-image-wrapper {
    border-right: 1px dotted #dedede;
    background: #f6f6f6;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.em-image-wrapper a {
    background: #fff;
    color: #cf8107;
    text-decoration: none; 
    border: 1px solid #cf8107;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
}

.em-image-wrapper a:hover {
    color: #31ad70;
    border: 1px solid #31ad70;
}

.em-image {
    width: 130px;
    border-radius: 50%;
    border: 1px solid #c2c2c2;
    padding: 5px;
    
}

.em-nickname {
    margin-top: 10px;
    display: block;
    font-weight: bolder;
}



/* Right Column */
.em-info-wrapper {
    width: 100%;
    padding: 30px;
}

.em-name {
    padding: 15px 0;
}

.em-name h1 {
    font-size: 20px;
    font-weight: 600;
}

.em-info-item {
    display: flex;
    justify-content: space-between;
    border-top: 1px dotted #dedede;
    padding: 10px 0;
}

.em-item-left {
    font-size: 15px;
    color: #8a8a8a;
}

.em-item-right {
    font-size: 15px;
}


/* Employee form style can be found in form.css */