.bg-group {
    background-color: var(--groups-color);
    color: var(--groups-text-color);
}

.bg-group-highlight{
    background-color: #f3f3f3 !important;
}

.bg-group.nav-link {
    background-color: var(--groups-color);
    color: var(--groups-text-color) !important;
}

.border-outline {
    border: 3px solid var(--border-color) !important;
    border-radius: 1rem;
}

.border-outline-end {
    border-right: none;
    border-bottom: 3px solid var(--border-color);
}

@media(min-width:992px) {
    .border-outline-end {
        border-right: 3px solid var(--border-color);
        border-bottom: none;
    }
}

.bg-price {
    background-color: var(--pricing-color);
    color: var(--pricing-text-color);
}

.bg-pricing-highlight {
    background-color: #f3f3f3;
}

.container {
    margin: 30px 0px;
}

.header {
    font-family: 'Libre Franklin', sans-serif;
    font-size: large;
    font-weight: 700;
}

.text {
    font-family: 'Arial';
    font-size: 12px;
}

.border-bold {
    border-bottom:1px solid;
}

.pointer:hover {
    cursor: pointer;
}

.form-check-input {
    transform: scale(1.5);
    appearance: none;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--check-color) !important;
}

#button {
    background-color: var(--groups-color);
    border-radius: 1rem;
    border-color: transparent;
    outline: none;
    color: var(--groups-text-color);
}


/* Das Overlay, das alles abdunkelt */
#loading-overlay {
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000; 
    color: white; 
    text-align: center; 
    padding-top: 25vh; 
    font-family: 'Libre Franklin', sans-serif;
}

/* Der LDS-Ring Spinner */
.lds-ring {
  color: #1c4c5b; /* Deine Wunschfarbe */
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid currentColor;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor transparent transparent transparent;
}
.lds-ring div:nth-child(1) { animation-delay: -0.45s; }
.lds-ring div:nth-child(2) { animation-delay: -0.3s; }
.lds-ring div:nth-child(3) { animation-delay: -0.15s; }

@keyframes lds-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#payButton {
    background-color: var(--groups-color);
    border-radius: 1rem;
    border-color: transparent;
    outline: none;
}

.success-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Libre Franklin', sans-serif;
    text-align: center;
    padding: 2rem;
}

.success-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 25px 50px;
}

.success-banner-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-banner-title {
    margin-bottom: 1rem;
}

.success-banner-message {
    margin-bottom: 2rem;
    max-width: 400px;
}