.error{ color:red;}


.confirmation .confirm-table {
    width: 100%;
    margin-bottom: 30px;
    border-top: 1px solid #ddd;
}

.confirmation .confirm-row {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.confirmation .confirm-label {
    width: 30%;
    padding: 15px;
    background-color: #f8f8f8;
    font-weight: bold;
}

.confirmation .confirm-value {
    width: 70%;
    padding: 15px;
}

.confirmation .confirm-multiline {
    white-space: pre-wrap;
}

.confirmation .form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.confirmation .back-button button {
    background-color: #888;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.confirmation .submit-button button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.confirmation button:hover {
    opacity: 0.9;
}





.completion {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.completion-header {
    text-align: center;
    margin-bottom: 30px;
}

.completion-icon {
    margin-bottom: 15px;
}

.completion-title {
    color: #4CAF50;
    font-size: 28px;
    margin: 0 0 10px;
}

.completion-message {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.completion-summary h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    color: #333;
}

.summary-table {
    width: 100%;
    margin-bottom: 30px;
    border-top: 1px solid #ddd;
}

.summary-row {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.summary-label {
    width: 30%;
    padding: 12px 15px;
    background-color: #f8f8f8;
    font-weight: bold;
}

.summary-value {
    width: 70%;
    padding: 12px 15px;
}

.summary-multiline {
    white-space: pre-wrap;
}

.completion-reference {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-size: 14px;
}

.completion-footer {
    text-align: center;
    margin-top: 40px;
}

.back-to-home {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.back-to-home:hover {
    background-color: #3d8b40;
}




