/*
 * Sonny Sync - Success Page Styles
 */

/* Main wrapper to center content on the page */
.idscarwash-success-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
    background-color: #f7f7f7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* The white container box */
.success-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 1px solid #e5e5e5;
}

/* The green checkmark circle */
.success-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background-color: #28a745;
    color: white;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

/* Main heading "Membership Activated!" */
.success-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

/* Subtext with the welcome message */
.success-subtext {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* The box containing plan and vehicle details */
.success-details {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 16px;
}

.detail-item:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.detail-label {
    color: #555;
    font-weight: 500;
}

.detail-value {
    color: #333;
    font-weight: bold;
}

/* Final text at the bottom */
.success-footer {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

/* "Back to Home" button */
.success-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.success-button:hover {
    background-color: #0056b3;
    color: white;
}