.credit-card-container {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ffa08e;
    color: #424242;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: 'Montserrat', Helvetica, sans-serif;
}

.card-number-icon {
    display: flex;
    align-items: center;
}

.card-label {
    font-size: 12px;
    color: #FFA08E;
    text-align: left;
    margin-bottom: 5px;
}

.card-element {
    padding: 10px;
    border: 1px solid #ffa08e;
    border-radius: 20px;
    background-color: #fff;
    color: #424242 !important;
    font-size: 16px;
    flex-grow: 1;
    /* Ensures card number takes full width */
}

/* Ensure the card icon doesn't shrink and remains next to the card number */
.brand-icon {
    width: 50px;
    height: auto;
    margin-left: 10px;
    flex-shrink: 0;
}

/* Full-width for Expiry and CVC combined */
.expiration-cvc {
    display: flex;
    gap: 10px;
}

.field-group {
    flex: 1;
    /* Each field takes up equal space */
    display: flex;
    flex-direction: column;
}

.card-element.small {
    width: 100%;
    /* Ensure full width for small elements */
}


/* Small screens */
@media screen and (max-width: 768px) {
    .card-fields {
        padding: 10px;
    }

}



.btn-cream {
    background: #FFFFFF !important;
    padding: 7.5px 15px;
    border: 1px solid #FFFFFF !important;
    color: #143CFF !important;
    width: auto;
    border-radius: 20px !important;
}

.flex-parent {
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.flex-item {
    flex-grow: 1;
}

.flex-big {
    flex-grow: 6;
}

.title-container,
.main-container {
    justify-content: center;
    align-items: center;
    position: relative;
    /* To use absolute positioning for the arrow */
}

.arrow {
    position: absolute;
    left: 0;
}

.centered {
    text-align: center;
    flex-grow: 1;
}

.main-centered {
    text-align: center;
    flex-grow: 1;
    display: block;
}

.main-centered a {
    display: block;
}

.blue-bubble {
    display: inline-block;
    background: #143CFF !important;
    padding: 3px 15px;
    border: 1px solid #143CFF !important;
    color: #FFFFFF;
    /*width: auto;*/
    border-radius: 20px !important;
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 600;
}

.options-container-a {
    display: flex;
    justify-content: left;
    /* Center horizontally */
    align-items: left;
    /* Center vertically */
}

.inner-container-a {
    display: flex;
    flex-direction: column;
    /* Stack the lines vertically */
    padding-top: 20px;
    padding-bottom: 20px;
}

.line-a {
    display: flex;
    align-items: center;
    /* Center the icon and text vertically */
    justify-content: flex-start;
    /* Align content to the left */
    margin-bottom: 10px;
    /* Space between the lines */
}

.line-a:last-child {
    margin-bottom: 0;
    /* Remove margin from the last line */
}

.line-a a {
    text-decoration: none;
    color: #FFFFFF !important;
}

.line-a button {
    background: none;
    /* Remove background color */
    border: none;
    /* Remove border */
    padding: 0;
    /* Remove padding */
    margin: 0;
    /* Remove margin */
    font: inherit;
    /* Inherit font properties from parent */
    color: inherit;
    /* Inherit text color from parent */
    text-align: inherit;
    /* Inherit text alignment */
    outline: none;
    /* Remove outline on focus (optional) */
    cursor: pointer;
    /* Show pointer cursor on hover */
    appearance: none;
    /* Remove default browser appearance (for some browsers) */
    -webkit-appearance: none;
    /* Remove default appearance on WebKit browsers */
    -moz-appearance: none;
    /* Remove default appearance on Mozilla browsers */
}

.icon {
    width: 55px;
    /* Default icon size for larger screens */
    margin-right: 10px;
    /* Space between the icon and the text */
    display: inline-block !important;
}

.timeline-container {
    color: #ffa08e;
    font-family: 'Montserrat';
}

.timeline-inner-container {
    display: flex;
    flex-direction: column;
    /* Stack the lines vertically */
    /*padding-top: 20px;*/
    padding-bottom: 20px;
}

.timeline-line {
    display: flex;
    align-items: flex-start;
    /* Align items at the top */
    justify-content: flex-start;
    /* Align content to the left */
    margin-bottom: 10px;
    /* Space between the lines */
}

.timeline-line img {
    width: 55px;
    margin-right: 10px;
    /* Space between the image and the text */
}

.timeline-line span {
    font-size: 18px;
}

.timeline-line ul {
    list-style-position: inside;
    /* Ensure the bullet points are inside */
    margin: 0;
    padding-left: 0;
    /* Remove left padding to align with the image */
    padding-top: 5px;
    /* Optional: add some padding to adjust vertical alignment */
}

.timeline-line ul li {
    margin-left: 0;
    /* Ensure no additional margin is added */
    padding-left: 0;
    /* Ensure no additional padding is added */
    font-size: 16px;
}

.timeline-line .timeline-inner-container {
    display: flex;
    flex-direction: row;
    /* Align icon and list horizontally */
    align-items: flex-start;
    /* Align items at the top */
}

.combined-input-button {
    display: flex;
    max-width: 100%;
}

.combined-input-button input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 20px 0 0 20px;
    font-size: 16px;
    min-width: 0;
    /* Allows the input to shrink below its default size */
}

.combined-input-button button {
    background-color: #143CFF;
    color: white;
    padding: 10px 20px;
    border: 1px solid #143CFF;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    font-size: 16px;
    white-space: nowrap;
    /* Prevents the button text from wrapping */
}

.cancellationBanner {
    color: #cc0000;
    font-size: 0.75em;
    font-weight: bold;
    background: #ffb3b3;
    padding: 3px;
    border-radius: 5px;
}

/* Medium screens */
@media screen and (max-width: 992px) {

    .combined-input-button input[type="text"],
    .combined-input-button button {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Small screens */
@media screen and (max-width: 768px) {

    .combined-input-button input[type="text"],
    .combined-input-button button {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Extra small screens */
@media screen and (max-width: 576px) {
    .combined-input-button {
        flex-direction: column;
    }

    .combined-input-button input[type="text"] {
        border-right: 1px solid #ccc;
        border-radius: 20px;
        margin-bottom: 10px;
    }

    .combined-input-button button {
        border-radius: 20px;
        width: 100%;
    }
}

.text {
    font-size: 16px;
    /* Default font size for larger screens */
}

.text-action {
    font-weight: bold;
}



.timeline-container {
    color: #ffa08e;
    font-family: 'Montserrat';
}

.timeline-inner-container {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.timeline-line {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.timeline-line img {
    width: 55px;
    margin-right: 10px;
}

.timeline-line span {
    font-size: 18px;
}

.timeline-line ul {
    list-style-position: inside;
    margin: 0;
    padding-left: 0;
    padding-top: 5px;
}

.timeline-line ul li {
    margin-left: 0;
    padding-left: 0;
    font-size: 16px;
}

/* Medium screens */
@media screen and (max-width: 992px) {
    .timeline-line img {
        width: 45px;
    }

    .timeline-line span {
        font-size: 16px;
    }

    .timeline-line ul li {
        font-size: 14px;
    }
}


.message-container {
    background-color: #fff4e5;
    border: 1px solid #ffa726;
    border-radius: 5px;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: center;
    color: #5f370e;
}

.message-container h4 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #d84315;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-container h4::before {
    content: "⚠️";
    margin-right: 8px;
}

.message-container p {
    font-size: 16px;
    margin: 0;
}

@media (max-width: 768px) {
    .message-container {
        padding: 10px 15px;
    }

    .message-container h4 {
        font-size: 16px;
    }

    .message-container p {
        font-size: 14px;
    }
}