/* Container styling */
.user-confirmation-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    text-align: left;
}

/* Heading styling */
.user-confirmation-container h1 {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Paragraph styling */
.user-confirmation-container p {
    margin: 10px 0;
    font-size: 16px;
    color: #555;
}

/* Buttons container */
.user-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* Button styling */
.user-buttons button {
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.user-buttons .user-confirm {
    background-color: #4caf50;
    color: white;
}

.user-buttons .user-confirm:hover {
    background-color: #45a049;
}

.user-buttons .user-cancel {
    background-color: #f44336;
    color: white;
}

.user-buttons .user-cancel:hover {
    background-color: #d32f2f;
}