.portal-btn {
    background: none;       /* no default button color */
    border: none;           /* remove button border */
    color: #fff;            /* white text */
    font-weight: 500;       /* same as other menu items */
    cursor: pointer;
    font:declaration: inherit; /* inherit font style */
    font-size: inherit;    /* inherit font size */
    
}

.portal-btn:hover {
    color: #ffd700;         /* gold on hover */
}






/* Modal background overlay (darker) */
.modal-backdrop.show {
    opacity: 0.8 !important;
}

/* Black & Gold Modal */
.black-gold-modal {
    background-color: #000 !important;    /* FORCE black */
    color: gold !important;               /* Text gold */
    border: 2px solid gold;
    border-radius: 10px;
}

/* Form fields */
.black-gold-modal .form-control {
    background-color: #111 !important;
    border: 1px solid gold !important;
    color: gold !important;
}

.black-gold-modal .form-control:focus {
    background-color: #111 !important;
    border-color: gold !important;
    box-shadow: 0 0 10px gold;
    color: gold !important;
}

/* Labels */
.black-gold-modal .form-label {
    color: gold !important;
}

/* Buttons */
.btn-gold {
    background-color: gold !important;
    color: black !important;
    font-weight: bold;
}

.btn-gold:hover {
    background-color: #e0b000 !important;
    color: black !important;
}


