
.app_search_separator {
    height: 2vh;
}

.app_search_kategorie {
    font-size: 1.2vw;
    font-weight: bold;
    color: rgb(177, 177, 177);
    margin-top: 1vh;
    margin-bottom: 1vh;
    margin-left: 1vw;
}

.app_search_name {
    font-size: 1vw;
    font-weight: bold;
}

.app_search_company {
    font-size: 0.8vw;
    color: rgb(177, 177, 177);
}

.app_search_icon {
    width: 3vh;
    height: 3vh;
    border-radius: 50%;
    border: solid 1px;
    padding: 0.3vh;
}

.app_search_cmdlist {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: right;
}

.app_search_cmdicon {
    width: 2.5vh;
    height: 2.5vh;
    margin: 0.5vh;
    border-radius: 50%;
    border: solid 1px;
    border-color: transparent;
    padding: 0.5vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) {
    .app_search_cmdicon:hover {
        border-color: gray;
        background-color: rgba(200, 200, 200, 0.2);
        cursor: pointer;
    }
}

.app_search_left {
    width: 50%;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis;
}

.app_search_no_result {
    height: 80dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.app_search_nr_text_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50vw;
    font-size: 1.8vw;
    font-weight: bold;
    color: rgb(177, 177, 177);
}

.app_search_nr_text_2 {
     display: flex;
    align-items: center;
    justify-content: center;
    width: 50vw;
    font-size: 1.4vw;
    color: rgb(177, 177, 177);
}

.class_btn {
    border-radius: 2vh;
    border: solid 1px;
    border-color: rgb(84, 84, 84);
    text-align: center;
    background-color: transparent;
    color: white;
    width: 20vw;
    height: 4vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.class_btn_clickable {
    border-color: rgb(184, 184, 184);
    cursor: pointer;
}

@media (hover: hover) {
    .class_btn_clickable:hover {
        background-color: rgba(85, 85, 85, 0.483)
    }
}

.class_btn_left {
    width: 17vw;
    height: 3.5vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around
}

.class_btn_right {
    width: 3vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.class_btn_icon {
    width: 3vh;
    height: 3vh;
    border-radius: 50%;
    margin: 0.5vh;
    border: solid 1px;
    border-color: rgb(84, 84, 84);
}

@media (hover: hover) {
    .class_btn_icon:hover {
        background-color: rgb(0, 148, 0);
        cursor: pointer;
        border-color: green
    }
}


.app_cc {
    width: 8vw;
    border: none;
    height: 3vh;
    border: solid 1px;
    border-radius: 1.5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.app_cc_caller {
    font-size: 1vw;
    font-weight: bold;
    white-space: nowrap; 
    overflow: hidden;
    text-overflow:ellipsis;

}

.app_cc_extra {
    font-size: 0.8vw;
    color: rgb(177, 177, 177);
}

.app_cc_blue {
    border-color: blue;
    background-color: rgba(116, 116, 254, 0.4);
}

.app_cc_red {
    border-color: red;
    background-color: rgba(255, 0, 0, 0.4);
}

.app_cc_redbusy {
    border-color: red;
    background-color: rgba(255, 0, 0, 0.4);
    background: repeating-linear-gradient(
        135deg,              /* Winkel der Schraffur */
        #ff0000 0,             /* Startfarbe */
        #fba1a1 1px,           /* Linienbreite */
        transparent 2px,    /* Abstand zwischen Linien */
        transparent 10px    /* Abstand bis zur nächsten Linie */
    );
}

.app_cc_green {
    border-color: green;
    background-color: rgba(0, 136, 0, 0.4);
}

.app_current_filter {
    position: sticky;
    top: 0;
    height: 6vh;
    width: 96%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 10;
    transition: height 0.3s ease;
    margin-left: 2%;
    margin-right: 2%;
}

.app_current_filter.collapsed {
    height: 1vh;
}

.app_current_filter_content {
    width: 100%;
    height: calc(6vh - 1vh);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1vh 1vw;
    opacity: 1;
    transition: opacity 0.3s ease;
    gap: 1vw;
}

.app_current_filter.collapsed .app_current_filter_content {
    opacity: 0;
    pointer-events: none;
}

.app_current_filter_search_wrapper {
    flex: 0 0 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5vw;
}

.app_current_filter_search {
    flex: 1;
    height: 2.5vh;
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: solid 1px;
    border-bottom-color: rgb(195, 195, 195);
    padding: 0 0.5vw;
    color: white;
    font-size: 1vw;
}

.app_current_filter_search::placeholder {
    color: rgba(195, 195, 195, 0.6);
}

.app_current_filter_search:focus {
    border-bottom-color: white;
}

.app_current_filter_clear {
    width: 2vh;
    height: 2vh;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

@media (hover: hover) {
    .app_current_filter_clear:hover {
        opacity: 1;
    }
}

.app_current_filter_bubbles {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5vw;
}

.app_current_filter_bubble {
    height: 2.25vh;
    padding: 0 0.9vw;
    border: 1px solid;
    border-radius: 1.125vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.64vw;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    color: white;
}

@media (hover: hover) {
    .app_current_filter_bubble:hover {
        opacity: 0.8;
    }
}

.app_current_filter_bubble.filter_all {
    border-color: rgb(150, 150, 150);
    background-color: rgba(150, 150, 150, 0.3);
}

.app_current_filter_bubble.filter_all.active {
    border-color: rgb(200, 200, 200);
    background-color: rgba(150, 150, 150, 0.6);
}

.app_current_filter_bubble.filter_planned {
    border-color: green;
    background-color: rgba(0, 136, 0, 0.4);
}

.app_current_filter_bubble.filter_planned.active {
    border-color: rgb(0, 200, 0);
    background-color: rgba(0, 136, 0, 0.7);
}

.app_current_filter_bubble.filter_answered {
    border-color: green;
    background-color: rgba(0, 136, 0, 0.4);
}

.app_current_filter_bubble.filter_answered.active {
    border-color: rgb(0, 200, 0);
    background-color: rgba(0, 136, 0, 0.7);
}

.app_current_filter_bubble.filter_missed {
    border-color: red;
    background-color: rgba(255, 0, 0, 0.4);
}

.app_current_filter_bubble.filter_missed.active {
    border-color: rgb(255, 100, 100);
    background-color: rgba(255, 0, 0, 0.7);
}

.app_current_filter_bubble.filter_dialed {
    border-color: blue;
    background-color: rgba(116, 116, 254, 0.4);
}

.app_current_filter_bubble.filter_dialed.active {
    border-color: rgb(150, 150, 254);
    background-color: rgba(116, 116, 254, 0.7);
}

.app_current_filter_bubble.filter_busy {
    border-color: red;
    background-color: rgba(255, 0, 0, 0.4);
}

.app_current_filter_bubble.filter_busy.active {
    border-color: rgb(255, 100, 100);
    background-color: rgba(255, 0, 0, 0.7);
}

.app_current_filter_toggle {
    width: 100%;
    height: 1vh;
    background-color: rgba(100, 100, 100, 0.3);
    border-top: 1px solid rgba(150, 150, 150, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

@media (hover: hover) {
    .app_current_filter_toggle:hover {
        background-color: rgba(150, 150, 150, 0.5);
    }
}

.app_current_filter_toggle_icon {
    width: 2.5vh;
    height: 2.5vh;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.app_current_filter.collapsed .app_current_filter_toggle_icon {
    transform: rotate(0deg);
}