.reply-modal {
    background: #1c1c1e;
    width: 90%;
    position: absolute;
    bottom: 0;
    left: 74%;
    max-width: 350px;
    border-radius: 12px;
    padding: 20px;
    color: white;
    border: 1px solid #333;
    transform: translate(-50%, -50%);
    z-index: 2000;
    flex-direction: column;
    display: none;
}

.reply-modal.inline {
    position: absolute;
    transform: translate(100%, -56%);
    left: 0;
}

.reply-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.reply-modal-cancel-btn {
    cursor: pointer;
    color: #888;
    font-size: 20px;
    transition: color 0.2s;
}

.reply-modal-cancel-btn:hover {
    color: #fff;
}

.reply-options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reply-option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #2a2a2c;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reply-option-item:hover {
    background: #333335;
}

.reply-option-item.selected {
    background: #2d3a2f;
}

.reply-option-icon {
    font-size: 20px;
    color: #888;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reply-option-item.selected .reply-option-icon {
    color: var(--primary, #4a9d5f);
}

.reply-option-content {
    flex: 1;
}

.reply-option-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.reply-option-description {
    font-size: 12px;
    color: #888;
    line-height: 1.3;
}

.reply-option-check {
    font-size: 18px;
    color: var(--primary, #4a9d5f);
    opacity: 0;
    transition: opacity 0.2s;
}

.reply-option-item.selected .reply-option-check {
    opacity: 1;
}