
/* Confirmation Modal Specific Styles */
.confirmation-content {
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    padding: 30px;
    box-sizing: border-box;
}

.summary-container {
    text-align: left;
    overflow-y: auto;
    flex-grow: 1;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.summary-section {
    margin-bottom: 24px;
}

.summary-section h3 {
    font-size: 18px;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    border-bottom: 1px dotted #eee;
    padding-bottom: 4px;
}

.summary-label {
    font-weight: 500;
    color: var(--sub-text-color);
    flex: 1;
    padding-right: 10px;
}

.summary-value {
    color: var(--text-color);
    font-weight: bold;
    flex: 1;
    text-align: right;
    word-break: break-all;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .confirmation-content {
        padding: 20px;
    }

    .summary-row {
        flex-direction: column;
    }

    .summary-value {
        text-align: left;
        padding-left: 10px;
        margin-top: 4px;
    }
}
