html, body {
    height: 100%;
    margin: 0;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: #f5f5f7;
    color: #1d1d1f;
}
.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.content {
    flex: 1;
}
.top-text {
    text-align: center;
    padding: 50px 20px 20px;
}
.top-text h1 {
    font-size: 32px;
    font-weight: 600;
}
.top-text p {
    font-size: 18px;
    color: #6e6e73;
}
.plan-buttons {
    text-align: center;
    margin: 20px 0;
}
.plan-buttons button {
    background-color: #f5f5f7;
    color: #0071e3;
    border: 1px solid #0071e3;
    padding: 15px 30px;
    margin: 0 5px;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.plan-buttons button:hover {
    background-color: #e5e5e7;
}
.plan-buttons .active-plan {
    background-color: #0071e3;
    color: white;
}
.plan-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 20px;
}
.plan-block {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 280px;
    margin: 20px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}
.plan-block:hover {
    transform: scale(1.02);
}
.plan-block h2 {
    font-size: 24px; /* Iets groter gemaakt */
    margin-bottom: 10px;
}
.price {
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0; /* Minder ruimte tussen prijs en naam */
}
.details {
    font-size: 16px;
    color: #6e6e73;
    margin: 20px 0;
    text-align: left;
    list-style: none;
    padding: 0;
    flex-grow: 1;
}
.details li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}
.details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0071e3;
    font-size: 20px;
    line-height: 1;
}
.select-button, .contact-button {
    background-color: #fff;
    color: #0071e3;
    border: 2px solid #0071e3;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 20px;
}
.select-button:hover, .contact-button:hover {
    background-color: #0071e3;
    color: white;
}
.select-button.selected {
    background-color: #0071e3;
    color: white;
}
.footer-links {
    text-align: center;
    margin: 20px 0 10px;
}
.footer-links a {
    color: #0071e3;
    margin: 0 15px;
    text-decoration: none;
    font-size: 14px;
}
.footer-links a:hover {
    text-decoration: underline;
}
footer {
    background-color: #e5e5e7;
    padding: 20px 0;
}
footer p {
    text-align: center;
    font-size: 12px;
    color: #6e6e73;
    margin-bottom: 10px;
}
.hidden {
    display: none;
}
/* Business Plan Styling */
.business-plan {
    width: 280px; /* Zelfde breedte als andere planblokken */
    margin: 20px auto; /* Centreer het blok */
    padding: 30px 20px;
}
.business-plan h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.business-plan .price {
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0;
    color: #ff9500; /* Andere kleur om het te laten opvallen */
}
.business-plan .details {
    font-size: 16px;
    margin: 20px 0;
}
.business-plan .details li {
    margin-bottom: 10px;
    padding-left: 25px;
}
.business-plan .details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff9500;
    font-size: 20px;
    line-height: 1;
}
.business-plan .contact-button {
    border-color: #ff9500;
    color: #ff9500;
}
.business-plan .contact-button:hover {
    background-color: #ff9500;
    color: white;
}
/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* Semi-transparante achtergrond */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal.hidden {
    display: none;
}
.modal-content {
    background-color: #fff;
    border-radius: 20px;
    width: 500px;
    padding: 40px;
    text-align: center;
    position: relative;
}
.modal-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.modal-content p {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 30px;
}
.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
}
.close-button:hover {
    color: #000;
}
.selected-plan {
    background-color: #f5f5f7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}
.plan-info {
    margin-bottom: 20px;
}
#change-plan-button {
    background-color: #fff;
    color: #0071e3;
    border: 2px solid #0071e3;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
#change-plan-button:hover {
    background-color: #0071e3;
    color: white;
}
#confirm-button {
    background-color: #0071e3;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}
#confirm-button:hover {
    background-color: #005bb5;
}
/* Dropdown Styles binnen de Modal */
.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}
.dropdown-button {
    background-color: #f5f5f7;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 15px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dropdown-icon {
    font-size: 18px;
    color: #6e6e73;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    margin-top: 5px;
    width: 100%;
    z-index: 1;
    max-height: 200px;
    overflow-y: auto;
}
.dropdown-item {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}
.dropdown-item:hover {
    background-color: #f1f1f1;
}
.plan-name {
    font-size: 16px;
}
.plan-price {
    font-size: 16px;
    color: #6e6e73;
}

/* Font Awesome Spinner Styling */
.spinner-icon {
    margin-left: 10px;
    font-size: 16px; /* Pas aan indien nodig */
}