/* Above: Page title styling */
.page-title {
    font-size: 2rem;
    font-weight: 700;
}

/* Above: Header logos (optional sizing constraints) */
.header-logo-main {
    max-height: 3.5rem;
    height: auto;
}

.header-logo-powered {
    max-height: 3rem;
    height: auto;
}

/* Above: Custom modal overlay (reuse what you had before, or keep): */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-overlay.is-visible {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    max-width: 24rem;
    width: 90%;
    text-align: center;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.modal-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.modal-body {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.button-secondary {
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    border-radius: 0.4rem;
    border: none;
    background-color: #eeeeee;
    color: #222222;
    cursor: pointer;
}

.form-control::placeholder {
    color: rgba(0,0,0,0.45);
}
