.contactForm {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.form {
    background: var(--color);
    box-shadow: 2px 2px 8px #00000020;
    padding: 14px;
    border: solid 1px #00000020;
    border-radius: 34px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0 0 0;
}

.form textarea {
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    min-height: 100px;
    resize: vertical;
    transition: all 0.3s ease;
    background: var(--color);

}

.form textarea:focus {
    outline: none;
    /* border-color: #7e5d80; */
    /* box-shadow: 0 0 0 3px rgba(126, 93, 128, 0.1); */
}

.optionsTags {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.option {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.option button {
    background: var(--bgCard);
    border: none;
    border-radius: 20px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
}

#attachBtn {
    gap: 0px;

}

#attachBtn .label {
    position: relative;
    top: -6px;
    right: -10px;
    width: 0;
    height: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

#attachBtn .label .info {
    display: none;
    background: #5c5c5c;
    color: #fff;
    border-radius: 50%;
    font-size: 8px;
    min-width: 16px;
    min-height: 16px;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.option button:hover {
    background: #f5f5f5;
    color: #7e5d80;
    /* border-color: #7e5d80; */
    /* transform: translateY(-2px); */
    /* box-shadow: 0 4px 6px rgba(126, 93, 128, 0.2); */
}

.option button:active {
    transform: translateY(0);
}

.suggestion {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.fileContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.fileContainer .fileItem {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 5px 8px;
    border-radius: 18px;
    font-size: 12px;
}

.fileContainer .fileItem span {
    font-size: 10px;
}

.suggestion button {
    background: var(--color);
    border: 1px solid var(--color);
    /* box-shadow: 2px 2px 8px #00000020; */
    padding: 10px 16px;
    border-radius: 21px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    color: #5c5c5c
}

.suggestion button:hover {
    background: #f5f5f5;
    /* color: #fff; */
    border: 1px solid transparent;
    transform: translateX(2px);
    /* box-shadow: 0 4px 12px rgba(126, 93, 128, 0.25); */
}

.suggestion button:active {
    transform: translateX(0);
}

.contextMenu {
    position: fixed;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 150px;
    display: none;
}

.contextMenu.show {
    display: block;
}

.contextMenu button {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #333;
}

.contextMenu button:hover {
    background: #f5f5f5;
    color: #7e5d80;
}

.contextMenu button:first-child {
    border-radius: 8px 8px 0 0;
}

.contextMenu button:last-child {
    border-radius: 0 0 8px 8px;
}

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #7e5d80;
    color: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
    z-index: 1001;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.resultMenu {
    position: relative;
}

.dropdownContent {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 999;
    top: 100%;
    right: 0;
    margin-top: 4px;
}

.dropdownContent.show {
    display: block;
}

.dropdownContent button {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.dropdownContent button:hover {
    background: #f5f5f5;
    color: #242323;
}

.dropdownContent button:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdownContent button:last-child {
    border-radius: 0 0 8px 8px;
}