.confirmation-container {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
    margin: auto;
}

.photo-container {
    text-align: center;
    margin-bottom: 20px;
}

.photo-container img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.confirmation-content h3 {
    margin-top: 20px;
}

.confirmation-buttons {
    margin-top: 20px;
    text-align: center;
}

.confirmation-buttons button {
    background-color: #4664b2;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 10px;
}

.confirmation-buttons button:hover {
    background-color: #365b9c;
}

/* Mobile responsiveness for confirmation */
@media (max-width: 768px) {
    .confirmation-container {
        width: 95%;
        padding: 15px;
    }

    .photo-container img {
        width: 80px;
        height: 80px;
    }

    .confirmation-buttons button {
        width: 100%;
        margin: 5px 0;
        padding: 12px;
    }
}


