.doc-head{
    width: 100%;
    height: 8%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    display: flex;
    flex-direction: row;
    z-index: 4;
    background-color: var(--main-bg-color);
}

/* =============================== logo */
.doc-head .doc-logo{
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.doc-head .doc-logo .imgs{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.doc-head .doc-logo .imgs img{
    height: 70%;
    margin: 0px 20px;
}

.doc-head .doc-logo .doc-title{
    font-weight: bold;
    font-size: 18px;
    margin-right: 65px;
    color: var(--main-text-color);
}

/* ========================= doc search bar  */
.doc-head .doc-search{
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.doc-head .doc-search .doc-search-box {
    width: 100%;
    position: relative;
    display: flex;
}
  

.doc-head .doc-search .doc-searchTerm {
    width: 100%;
    border: 3px solid var(--main-border-color);
    border-right: none;
    padding: 5px;
    height: 100%;
    border-radius: 20px 0 0 20px;
    outline: none;
    color: var(--second-text-color);
    font-size: 16px;
}
  
.doc-head .doc-search .searchTerm:focus{
    color: var(--main-focus-color);
}
  
.doc-head .doc-search .doc-searchButton {
    width: 40px;
    height: 36px;
    border: 1px solid var(--main-border-color);
    background: var(--main-border-color);
    text-align: center;
    color: var(--main-text-color);
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
}

/* ======================================== doc menu */
.doc-head .doc-menu{
    width: 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.doc-head .doc-menu .profile-container{
    width: 25%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.doc-head .doc-menu .profile-container img{
    width: 40px;
    height: 40px;
    background-color: var(--main-bg-color);
    border-radius: 50%;
}

.doc-head .doc-menu .profile-container span a{
    color: var(--second-text-color);
    font-weight: bold;
    margin-left: 10px;
    text-decoration: none;
}

.doc-head .doc-menu .profile-container span a:hover{
    color: var(--main-focus-color);
    font-weight: bold;
    margin-left: 10px;
    text-decoration: underline;
}

.doc-head .doc-menu .doc-interactive-menu{
    display: flex;
    flex-direction: row;
    margin-left: 20px;
    width: 75%;
}

.doc-head .doc-menu .doc-interactive-menu a{
    margin-right: 20px;
    text-decoration: none;
    text-align: left;
    color: var(--second-text-color);
}

.doc-head .doc-menu .doc-interactive-menu a:hover{
    color:var(--main-focus-color);
}

.doc-head .doc-menu .logout-button{
    text-decoration: none;
    font-weight: bold;
    color: var(--second-text-color);
    margin: 0 16px;
}

.doc-head .doc-menu .logout-button:hover{
    color: var(--main-focus-color);
}

/* .data-menu{
    animation-name:glow;
    animation-duration:0.2s;
    animation-iteration-count:infinite;
    animation-direction:alternate;
  }
  
@keyframes glow{
    from{text-shadow:0px 0px 5px var(--main-bg-color),0px 0px 5px var(--main-text-color);}
    to{text-shadow:0px 0px 20px var(--main-bg-color),0px 0px 20px var(--main-text-color);}
} */











/* =============================== logo */
.sidebar .doc-logo{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sidebar .doc-logo .imgs{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sidebar .doc-logo .doc-title{
    font-weight: bold;
    font-size: 18px;
    margin-right: 65px;
    color: var(--main-text-color);
}

/* ========================= doc search bar  */
.sidebar .doc-search{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}


.sidebar .doc-search .doc-search-box {
    width: 100%;
    position: relative;
    display: flex;
}
  

.sidebar .doc-search .doc-searchTerm {
    width: 100%;
    border: 3px solid var(--main-border-color);
    border-right: none;
    padding: 5px;
    height: 100%;
    border-radius: 20px 0 0 20px;
    outline: none;
    color: var(--second-text-color);
    font-size: 16px;
}
  
.sidebar .doc-search .searchTerm:focus{
    color: var(--main-focus-color);
}
  
.sidebar .doc-search .doc-searchButton {
    width: 40px;
    height: 36px;
    border: 1px solid var(--main-border-color);
    background: var(--main-border-color);
    text-align: center;
    color: var(--main-text-color);
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
}

/* ======================================== doc menu */
.sidebar .doc-menu{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar .doc-menu .profile-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sidebar .doc-menu .profile-container img{
    width: 40px;
    height: 40px;
    background-color: var(--main-bg-color);
    border-radius: 50%;
}

.sidebar .doc-menu .profile-container span a{
    color: var(--second-text-color);
    font-weight: bold;
    margin-left: 10px;
    text-decoration: none;
}

.sidebar .doc-menu .profile-container span a:hover{
    color: var(--main-focus-color);
    font-weight: bold;
    margin-left: 10px;
    text-decoration: underline;
}

.sidebar .doc-menu .doc-interactive-menu{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    width: 100%;
    margin-bottom: 20px;
}

.sidebar .doc-menu .doc-interactive-menu a{
    margin-right: 20px;
    text-decoration: none;
    text-align: left;
    color: var(--second-text-color);
}

.sidebar .doc-menu .doc-interactive-menu a:hover{
    color:var(--main-focus-color);
}

.sidebar .doc-menu .logout-button{
    text-decoration: none;
    font-weight: bold;
    color: var(--second-text-color);
    margin: 0 16px;
}

.sidebar .doc-menu .logout-button:hover{
    color: var(--main-focus-color);
}
