/* URL복사 토스트팝업 */
.toast {
    display: none;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    color: white;
    padding: 15px;
    border-radius: 10px;
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-width: 150px;
}

.toast button {
    background-color: white;
    color: black;
    border: none;
    padding: 5px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.toast button:hover {
    background-color: #ddd;
}

/* 제목 최대 2줄, 이후 말줄임 */
.title-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

/* 검색어 input에 삭제 버튼 */
#clearBtn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: none;
    background: url(/images/service/sub/delete-circle-731f708357f2e590c0dad07ada19a0f8.svg) no-repeat center center;
    background-size: 20px 20px;
    cursor: pointer;
    display: none;
}

.input.search {
    position: relative;
    display: flex;
    align-items: center;
}

.input.search input {
    flex: 1;
    padding-right: 30px;
}
