/* ============================
   CF7 Confirmation Step
   ============================ */

.cf7cs-confirm {
    margin-top: 1.5em;
}

.cf7cs-confirm__msg {
    font-weight: bold;
    margin-bottom: 1.2em;
    font-size: 1em;
    color: #333;
}

.cf7cs-confirm__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.8em;
}

.cf7cs-confirm__table th,
.cf7cs-confirm__table td {
    padding: 0.75em 1em;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
    font-size: 0.95em;
    line-height: 1.7;
}

.cf7cs-confirm__table th {
    width: 30%;
    background: #f5f5f5;
    font-weight: bold;
    color: #444;
    white-space: nowrap;
}

.cf7cs-confirm__table td {
    background: #fff;
    color: #333;
}

.cf7cs-confirm__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cf7cs-btn {
    padding: 0.65em 1.8em;
    font-size: 0.95em;
    font-weight: bold;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.cf7cs-btn--back {
    background: #f0f0f0;
    color: #555;
    border: 1px solid #ccc;
}

.cf7cs-btn--back:hover {
    background: #e0e0e0;
}

.cf7cs-btn--send {
    background: #d0272a;
    color: #fff;
}

.cf7cs-btn--send:hover {
    background: #a81e20;
}


@media (max-width: 680px) {
    .cf7cs-confirm__table th {
        width: 40%;
        white-space: normal;
    }

    .cf7cs-confirm__btns {
        flex-direction: column;
    }

    .cf7cs-btn {
        width: 100%;
        text-align: center;
    }
}
