.explore-page-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
}

.explore-page-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(229, 229, 229, 0.7);
    border-bottom: 0.666667px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    z-index: 2;
}

.explore-page-search-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 16px;
    gap: 16px;
    box-sizing: border-box;
}

.explore-search {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: calc(100% - 58px);
}

.explore-search input {
    width: 100%;
    font-family: "PeydaWebVF", serif;
    background: rgba(255, 255, 255, 0.4);
    border: 0.666667px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 9999px;
    height: 43.83px;
    padding: 0 15px 0 20px;
    font-weight: 600;
    box-sizing: border-box;
}
.explore-search input:focus {
    outline: none;
}
.explore-search img {
    position: absolute;
    left: 15px;
    pointer-events: none;
    user-select: none;
    z-index: 2;
}

.explore-page-tabs-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px;
    gap: 16px;
    box-sizing: border-box;
}

.explore-page-tabs-container-right, .explore-page-tabs-container-left {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: calc(50% - 8px);
    padding: 4px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.3);
    border: 0.666667px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 9999px;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.explore-page-tab-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    padding: 8px 16px;
    box-sizing: border-box;
    width: 50%;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, blur 0.3s;
}
.explore-page-tab-item.active {
    background: rgba(255, 255, 255, 0.8);
    border-color: #FFFFFF;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
}
.explore-page-tab-item p {
    margin: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    color: #111827;
}

.explore-page-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100dvh;
    width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 150px 0 0 0;
}