.messages-app {

    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 70px;

    background: white;

    overflow-y: auto;

}

.messages-header {

    padding: 20px;

    border-bottom: 1px solid #e5e5e5;

}

.messages-header h1 {

    margin: 0;

    font-size: 32px;

    font-weight: 700;

}

.conversation-list {

    display: flex;

    flex-direction: column;

}

.conversation {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    text-decoration: none;

    color: black;

    border-bottom: 1px solid #efefef;

}

.avatar {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    background: #34c759;

    color: white;

    font-weight: 700;

    display: flex;

    justify-content: center;

    align-items: center;

}

.avatar.future {

    background: #007aff;

}

.conversation-info {

    flex: 1;

}

.name {

    font-size: 16px;

    font-weight: 600;

}

.preview {

    margin-top: 4px;

    color: #666;

    font-size: 14px;

}