html {
    font-size: 14px;
    background-color: #333;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}



.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    xfont-family: "Roboto", sans-serif;
}
.colouredText {
    background: #121FCF;
    background: linear-gradient(to right, #121FCF 26%, #CF1512 55%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}
.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

#topLevel{margin-left:90px;}
/*inviteEmail div*/
.invite-box {
    position: relative;
    background-color: #f3f8ff;
    border: 1px solid #d0e7ff;
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    font-family: system-ui, sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    max-width: 100%;
}

.invite-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.copy-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    padding: 4px;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
}

    .copy-icon:hover {
        color: #1890ff;
        transform: scale(1.1);
    }

.invite-link-text {
    margin-bottom: 8px;
}

    .invite-link-text a {
        word-break: break-word;
        text-decoration: none;
        color: #0077cc;
        font-weight: 500;
        font-size: 0.95rem;
    }

        .invite-link-text a:hover {
            text-decoration: underline;
            color: #005fa3;
        }

.invite-expiration-note {
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}



