/* === Modal === */
.modal--rfq-offer {
    max-width: 600px;
    width: 100%;
}

.modal-content--rfq {
    background-color: white;
    border-radius: 24px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: start;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-height: calc(100vh - 40px);
}

/* === File Preview === */
/* Layout: [file-icon + file-name] ---- spacer ---- [download-btn]
   In RTL the whole row mirrors naturally via flexbox direction inheritance. */
.file-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* File name should always render LTR (it's a filename / path) */
.file-preview .file-name {
    direction: ltr;
    unicode-bidi: embed;
    text-align: start;
}

/* === Offer Card === */
.rfq-offer-card {
    transition: all 0.3s ease;
}

.rfq-offer-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
