.directs-page-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
}

.directs-page-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 16px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    box-sizing: border-box;
    gap: 16px;
    background: rgba(229, 229, 229, 0.7);
    border-bottom: 0.666667px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
}

.directs-page-search-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px;
    gap: 16px;
    box-sizing: border-box;
}

.directs-search {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: calc(100% - 58px);
}

.directs-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;
}
.directs-search input:focus {
    outline: none;
}
.directs-search img {
    position: absolute;
    left: 15px;
    pointer-events: none;
    user-select: none;
    z-index: 2;
}

.directs-page-body-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    overflow-y: auto;
    height: 100dvh;
    overflow-x: hidden;
}

.directs-page-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: max-content;
    overflow-x: hidden;
}

.directs-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    border-bottom: 0.666667px solid rgba(255, 255, 255, 0.5);
}
.directs-item:first-child {
    margin-top: 80px;
}
.directs-item:last-child {
    margin-bottom: 80px;
    border-bottom: none;
}

.directs-profile-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    position: relative;
    border-radius: 9999px;
}
.direction-notif-circle {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 999px;
    right: 0px;
    top: 0px;
    box-sizing: border-box;
    border: 2px solid var(--bg);
    background: var(--primary);
}

.directs-profile-image-placeholder {
    width: 100%;
    height: 100%;
    background: #ddd;
    border-radius: 9999px;
}
.directs-profile-image {
    pointer-events: none;
    user-select: none;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
}

.directs-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% - 64px);
    padding: 0 16px 0 0;
    box-sizing: border-box;
}

.directs-content-name-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#direct-username {
    margin: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    color: #111827;
}

#direct-time {
    margin: 0;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #871028;
}

.directs-content-message {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.directs-content-message p {
    margin: 0;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #111827;
}