#confirm-enrollment {
    max-width: 800px;
    padding: 0px;
}

#confirmationDetails {
    /*width: 400px !important;*/
}

.pd-left-15 {
    padding-left: 15px;
}

#enrollment-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#confirmationDetails {
    padding: 10px;
    /*border: 1px solid #ccc;*/
    margin-bottom: 20px;
}

    #confirmationDetails .summary-item {
        padding: 10px;
        margin-bottom: 15px;
    }

        #confirmationDetails .summary-item p {
            margin-top: 5px;
            margin-bottom: 5px;
            margin-left: 5px;
        }

#confirm-enrollment .summary-item .price {
    color: var(--primary-color);
    font-weight: 600;
}

/* General Section Styling */
.section-title {
    font-size: 1.8em;
    color: var(--enrollment-section-title-color, #333);
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

.section-subtitle {
    font-size: 1.4em;
    color: var(--enrollment-section-title-color, #444);
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

/* Product Item Styling */
.product-item {
    padding: 10px;
    background-color: #f9f9f9;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-name {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--enrollment-section-title-color, #333);
}

.grand-total-section {
    /*padding: 10px;*/
}

.grand-total-price {
    margin-top: 0;
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.edit-link {
    color: #2980b9;
    text-decoration: underline;
    cursor: pointer;
}

    .edit-link:hover {
        text-decoration: none;
    }

/* Address Section Styling */
.address-section {
    margin-top: 20px;
}

    .address-section p {
        margin: 10px 0;
    }


.glow {
    animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(255, 165, 0, 0.8);
    }

    to {
        box-shadow: 0 0 20px rgba(255, 165, 0, 1);
    }
}
