.email-suggestion {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 2px;
    display: none;
}

.email-suggestion.show {
    display: block;
}

.email-suggestion-content {
    padding: 8px 12px;
    padding-bottom: 0px;
    font-size: 13px;
    line-height: 13px;
    color: #333;
}

.email-suggestion-text {
    margin-bottom: 8px;
    font-weight: 500;
}

.email-suggestion-link {
    color: #673DE6;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}

.email-suggestion-link:hover {
    text-decoration: underline;
}

.email-suggestion-dismiss {
    float: right;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0;
    margin-left: 8px;
}

.email-suggestion-dismiss:hover {
    color: #666;
}

.email-input-container {
    position: relative;
}
