.h-screen {
    height: 100dvh;
}
.main-logo {
    width: 500px;
    margin-bottom: 40px;
}
.main-search {
    width: 500px;
}
.search-icon {
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e4e6ef;
    border-radius: 100%;
    padding-left: 5px;
    background: #fff;
    border-right: 0;
}
.search-box {
    border-left: 0;
    border-radius: 100px;
}
.search-box:focus {
    border-left: 0 !important;
    border: 1px solid #e4e6ef;
}
.btn-search {
    background: #e4e6ef;
    border-radius: 100px;
    width: 120px;
    font-size: 14px;
    height: 42px;
}
.group-search-box{
    transform: scale(1);
    box-shadow: 0px 0px 0px 0px #0000002b;
    border-radius: 100px;
    transition: all 0.5s;
}
.group-search-box:focus-within {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px -10px #0000002b;
}
.search-logo {
    height: 50px;
}
.head-search {
    height: 80px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: fixed;
    background: #f5f8fa;
    width: 100%;
    z-index: 1;
    box-shadow: 0px 2px 20px -10px #00000040;
}
.footer-search {
    position: fixed;
    bottom: 0;
    height: 40px;
    display: flex;
    background: #f5f8fa;
    align-items: center;
    gap: 20px;
    width: 100%;
    background: #f5f8fa;
}
.img-favicon {
    width: 20px;
}
.search-content {
    padding: 15px 0;
    border-bottom: 2px solid #d6d6d6;
    max-width: 750px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.text-title {
    font-size: 20px;
}
.text-description {
    font-size: 14px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.text-domain {
    color: #575757;
    line-height: 1;
}
.search-result {
    padding-top: 90px;
    padding-bottom: 60px;
}
.search-result .pagination {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}
.alertuse {
    padding: 10px 0;
    text-align: center;
    background: #044077;
    color: #fff;
}
.btn-back {
    position: fixed;
    left: 50px;
    border: 2px solid #044077;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-back>.bi {
    font-size: 18px;
    color: #044077;
}
@media (max-width: 768px) {
    .head-search {
        height: fit-content;
        padding: 10px 0;
        gap: 10px;
        flex-direction: column;
    }
    .main-search {
        width: 385px;
    }
    .search-result {
        padding-top: 130px;
    }
    .btn-back {
        left: 20px;
    }
}

/* Tambahan style untuk halaman index */
.container.h-100 .group-search-box {
    height: 70px;
}

.container.h-100 .search-icon {
    height: 70px;
    width: 60px;
    border-radius: 100px 0 0 100px;
}

.container.h-100 .search-box {
    height: 70px;
    font-size: 20px;
    padding-left: 0px;
}

/* .container.h-100 .btn-search {
    height: 70px;
    width: 140px;
    font-size: 16px;
} */