﻿:root {
    --bg: #0f172a;
    --panel: #111827;
    --card: #1e293b;
    --card-soft: rgba(255, 255, 255, 0.07);
    --border: rgba(148, 163, 184, 0.28);
    --text: #e2e8f0;
    --muted: #94a3b8;
    --black: #000000;
    --white: #ffffff;
    --blue: #2563eb;
    --blue-soft: #38bdf8;
    --yellow: #facc15;
    --red: #ef4444;
    --green: #22c55e;
    --silver: #cbd5e1;
    --radius: 16px;
    --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    --vchat-size: 130px;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* stops visible overflow immediately */
    height: 100%;
}

* {
    box-sizing: border-box;
}

html,
body,
form {
    margin:0;
    padding:0;
}
    body.preload {
        display: none;
    }

body {
    background-color:black;
}
    /* BASE STAR LAYER */
    body::before,
    body::after {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: -1;
        background-repeat: no-repeat;
    }

    /* LAYER 1 */
    body::before {
        background: radial-gradient(4px 4px at 10% 20%, rgba(255,255,255,0.9), transparent 60%), radial-gradient(3px 3px at 25% 70%, rgba(255,255,255,0.7), transparent 60%), radial-gradient(2px 2px at 40% 35%, rgba(255,255,255,0.8), transparent 60%);
        animation: twinkle1 2.8s ease-in-out infinite;
        opacity: 0.7;
    }

    /* LAYER 2 */
    body::after {
        background: radial-gradient(3px 3px at 60% 80%, rgba(255,255,255,0.6), transparent 60%), radial-gradient(4px 4px at 75% 25%, rgba(255,255,255,0.9), transparent 60%), radial-gradient(2px 2px at 85% 60%, rgba(255,255,255,0.5), transparent 60%), radial-gradient(3px 3px at 15% 50%, rgba(255,255,255,0.7), transparent 60%);
        animation: twinkle2 4.2s ease-in-out infinite;
        opacity: 0.6;
    }

/* DIFFERENT TIMING = RANDOM LOOK */
@keyframes twinkle1 {
    0% {
        opacity: 0.4;
        filter: brightness(0.8);
    }

    50% {
        opacity: 1;
        filter: brightness(1.4);
    }

    100% {
        opacity: 0.5;
        filter: brightness(0.9);
    }
}

@keyframes twinkle2 {
    0% {
        opacity: 0.6;
    }

    30% {
        opacity: 0.2;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

/* UTILITIES */
.hidden,
.hide {
    display: none;
}

.pointer {
    cursor: pointer;
}

.uppercase {
    text-transform: uppercase;
}

.silver {
    color: var(--silver);
}

.white {
    color: var(--white);
}

.text-black{
    color: var(--black);
}

.yellow,
.clr-yellow {
    color: var(--yellow) !important;
}

.text-accent {
    color: dodgerblue !important;
}

.hover-white:hover {
    color: var(--white);
}

.hover-red:hover {
    color: var(--red);
}

.text-right {
    text-align: right;
}

.float-right {
    float: right;
}

/* MAIN LAYOUT */
.Main-Container {

    background-image: url('/images/please-wait.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
    z-index: 99;
    text-shadow: 2px 4px 64px lime;
    width: 100vw;
    height: calc(100vh - 200px);
    margin: 22px auto 0;
    padding: 3px;
    color: var(--text);
}

    .Main-Container::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        top: -180px;
        right: -160px;
        background: radial-gradient(circle, rgba(56,189,248,.35), rgba(99,102,241,.14), transparent 65%);
        border-radius: 50%;
        filter: blur(8px);
        z-index: 0;
    }

    .Main-Container > * {
        position: relative;
        z-index: 1;
    }

/* HEADER */
.site-header {
    width: min(95%, 1200px);
    margin: 12px auto 0;
    padding: 14px 18px;
    color: var(--yellow);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    width: fit-content;
    margin: auto;
}

.brand-mark {
    position: relative;
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--yellow);
    font-size: 1.9rem;
    background: radial-gradient(circle, rgba(56,189,248,.32), rgba(15,23,42,.96));
    border: 2px solid rgba(56,189,248,.45);
    overflow: visible;
    box-shadow: 0 0 40px rgba(56,189,248,.35);
}

    .brand-mark > i {
        left: 3px;
        top: -3px;
        position: relative;
        z-index: 5;
    }

.brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.site-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    font-size: 2rem;
    top: 10px;
    margin-left: 50px;
}

.site-title-dot {
    color: var(--blue-soft);
    font-size: 40px;
}

.site-tagline {
    color: var(--muted);
    font-size: .95rem;
    letter-spacing: .4px;
    margin-top: 4px;
}

.site-link {
    cursor: pointer;
}

    .site-link:hover {
        color: var(--blue-soft);
    }

.browser-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: clamp(.8rem, 1.5vw, 1rem);
    white-space: nowrap;
}

    .browser-badge img {
        width: 38px;
        height: auto;
    }

.footer-text {
    text-align: center;
    color: var(--muted);
    margin-top: 18px;
    font-size: .95rem;
}

/* BRAND PULSE */
.pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(56,189,248,.52);
    box-shadow: 0 0 8px rgba(56,189,248,.45), 0 0 18px rgba(56,189,248,.25);
    animation: nebulaPulse 4s infinite;
    z-index: 1;
}

.ring1 {
    width: 70px;
    height: 70px;
}

.ring2 {
    width: 100px;
    height: 100px;
    animation-delay: 1.2s;
}

.ring3 {
    width: 130px;
    height: 130px;
    animation-delay: 2.4s;
}


/* HOME */
.hero-text {
    font-size: clamp(1rem, 1.5vw, 1.22rem);
    color: #dbeafe;
    line-height: 1.65;
    padding: 10px 10px 0 10px;
    text-align: left;
}

.nebula-link {
    color: var(--blue-soft);
    text-decoration: none;
}

    .nebula-link:hover {
        color: var(--white);
        text-decoration: underline;
    }

.nebula-info-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .nebula-info-list li {
        margin-bottom: 10px;
        color: #dbeafe;
        line-height: 1.55;
    }

    .nebula-info-list i {
        margin-right: 8px;
        color: var(--blue-soft);
    }

.maintenance {
    color: var(--yellow);
    background: rgba(250, 204, 21, .10);
    border: 1px solid rgba(250, 204, 21, .35);
    border-radius: 12px;
    padding: 5px;
    margin-top: 25px;
    text-align: center;
}

/* FORMS */
.form-control {
    background-color: rgba(15, 23, 42, .9);
    border: 1px solid rgba(148, 163, 184, .45);
    color: var(--text);
    border-radius: 10px;
}

    .form-control:focus {
        background-color: rgba(15, 23, 42, 1);
        color: var(--white);
        border-color: var(--blue-soft);
        box-shadow: 0 0 0 .2rem rgba(56, 189, 248, .18);
    }

    .form-control::placeholder {
        color: #94a3b8;
    }

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #0284c7);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(37, 99, 235, .25);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #1d4ed8, #0369a1);
    }

/* TABS */
.tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--blue);
    gap: 2px;
}

.tab-btn {
    position: relative;
    z-index: 99;
    padding: 10px 15px;
    cursor: pointer;
    border: 1px solid var(--border);
    background: rgba(30, 41, 59, .95);
    color: var(--text);
    border-top-left-radius: 28px;
    min-width:340px;
}

.tab {
    position: relative;
    z-index: 99;
    padding: 10px 15px;
    cursor: pointer;
    border: 1px solid var(--border);
    background: rgba(30, 41, 59, .95);
    color: var(--text);
    border-radius: unset !important;
}

.tab-btn-end {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 15px;
}

.tab-btn.active {
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
}
.align-left{
    text-align:left;
}
.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.text-white{
    color:white;
}
.border-silver{
    border-color:silver;
}
.border-thin{
    border: 1px solid white;
}
.tab-content {
    user-select:unset;
    border: 1px solid dodgerblue;
    background: rgba(30, 41, 59, 0.2); /* lower opacity is important */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border-radius: 0 0 15px 15px;
    display: none;
    padding: 25px;
    border-top: none;
}
    .tab-content.active {
        display: block;
    }

/* SECTIONS */
.nebula-section {
    margin-top: 11px;
}

.nebula-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 20px 0;
}

    .nebula-section-head h3 {
        margin: 0;
        font-size: 1.05rem;
    }

.nebula-join-row {
    display: flex;
    gap: 8px;
    max-width: 320px;
}

.nebula-create-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 6px;
}

.nebula-title-input {
    flex: 0 0 320px;
}

.nebula-date-input {
    flex: 0 0 130px;
}

.nebula-time-input {
    flex: 0 0 70px;
}

.nebula-ampm-input {
    flex: 0 0 80px;
}

.nebula-create-btn {
    flex: 0 0 110px;
}

/* MEETING RAIL */
.meeting-rail,
.mtg-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
    max-height: 660px; /* about 4 rows */
    overflow-y: auto;
    overflow-x: hidden;
    padding: 4px 6px 12px 4px;
    align-items: stretch;
}

    .meeting-rail .meetingcard,
    .mtg-container .meetingcard {
        width: 100%;
        min-width: 0;
        max-width: none;
        height: 100%;
    }

/* MEETING CARDS */
.meetingcard {
    margin: 0;
}

    .meetingcard.nebula-card,
    .nebula-card {
        position: relative;
        overflow: hidden;
        min-height: 145px;
        padding: 10px;
        border-radius: 12px;
        background: radial-gradient(circle at top left, rgba(0,255,255,.10), transparent 35%), linear-gradient(135deg, rgba(8,14,28,.98), rgba(3,7,18,.98));
        border: 1px solid rgba(90,220,255,.18);
        box-shadow: 0 0 10px rgba(0,225,255,.08);
        color: #eefcff;
        opacity: .8;
        transition: border-color .15s ease, box-shadow .15s ease;
    }

        .nebula-card:hover {
            border-color: rgba(90,220,255,.35);
            box-shadow: 0 0 18px rgba(0,225,255,.13);
        }

        .nebula-card h4 {
            color: var(--yellow);
            margin-bottom: 14px;
            font-weight: 700;
        }

            .nebula-card h4 i {
                margin-right: 6px;
            }

.nebula-card-header,
.nebula-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.nebula-card-title-wrap {
    min-width: 0;
}

.nebula-card-label {
    font-size: .6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #63f1ff;
    opacity: .85;
}

.nebula-card-title {
    font-size: .86rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nebula-card-tools {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

.nebula-card-body,
.nebula-card-mini-grid {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 6px;
    margin: 8px 0;
}

.nebula-chip {
    padding: 6px;
    border-radius: 8px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.07);
    min-width: 0;
}

    .nebula-chip span {
        display: block;
        font-size: .55rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: rgba(255,255,255,.55);
    }

    .nebula-chip strong {
        display: block;
        font-size: .7rem;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.nebula-meeting-id {
    color: #fff86b !important;
    letter-spacing: 1px;
}

.nebula-expire {
    font-size: .58rem;
    color: rgba(255,255,255,.55);
}

.nebula-card-icon,
.nebula-card-action {
    border: 1px solid rgba(101,247,255,.18);
    background: rgba(255,255,255,.04);
    color: #dffbff;
    border-radius: 8px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: .75rem;
}

    .nebula-card-icon:hover,
    .nebula-card-action:hover {
        background: rgba(101,247,255,.12);
    }

    .nebula-card-action.primary {
        background: linear-gradient(135deg, #65f7ff, #b2fff7);
        color: #031018;
        font-weight: 700;
        border: none;
    }

    .nebula-card-icon.danger:hover {
        color: #ff8fa3;
    }

/* =========================
   SAFE COMPONENT CONTAINER
========================= */

.fake-tile {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
    transition: transform 0.2s ease;
}

    /* fake “speaking glow” */
    .fake-tile.speaking {
        box-shadow: 0 0 0 2px limegreen, 0 0 12px limegreen;
        transform: scale(1.02);
    }

    /* avatar fill like video */
    .fake-tile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.vchat-root {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden; /* CRITICAL: prevents Chrome overflow bug */
    padding: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

    /* prevent accidental global bleed (scoped only) */
    .vchat-root * {
        box-sizing: border-box;
    }

/* =========================
   CONTROLS
========================= */

.vchat-controls {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
}

    .vchat-controls input {
        width: 25px;
        height: 25px;
    }

/* =========================
   AVATARS
========================= */

.avatar-grid {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, 100px);
    gap: 8px;
    max-width: 100%;
}

.avatar {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;

    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

    .avatar img {
        width: 100%;
        display: block;
    }

    .avatar.selected {
        background-color: rgba(30, 144, 255, .5);
    }

/* =========================
   PARTICIPANT AREA (MAIN FLEX FILL)
========================= */

#vchat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 130px);
    justify-content: center;
    max-width: 85%;
    gap: 10px;
}

/* tiles */
/* this is the dimensions and container for remote video */
.vchat-tile {
    width: var(--vchat-size);
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
}

    .vchat-tile video,
    .vchat-tile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* label */
.vchat-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 4px;
    font-size: 11px;
    color: #fff;
    background: rgba(0,0,0,0.5);
}

/* =========================
   SELF PREVIEW (NO FIXED POSITION)
   → now safely inside layout
========================= */
label {
    font-size: 2rem;
}

.self-preview {
    position: absolute;
    bottom: 20px;
    right: 20px;
    overflow: hidden;
    z-index: 10;
}



/* =========================
   FULLSCREEN
========================= */

.fullscreen-link {
    flex: 0 0 auto;
    text-align: right;
    font-size: 14px;
}

    .fullscreen-link a {
        display: inline-block;
        padding: 6px 10px;
        border-radius: 6px;
        background: #000;
        color: #fff;
        text-decoration: none;
    }

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    #vchat-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    }

    .self-preview {
        width: 110px;
        bottom: 60px;
        right: 10px;
    }
}

/* =========================
   FULLSCREEN MEDIA
========================= */

video:fullscreen,
img:fullscreen {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

/* VIDEO */
.remote-video {
    background-color: transparent;
    border: none !important;
    max-height: 85vh;
    width: 100%;
}

/* WAIT SCREEN */
#wait {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 990;
}

#waitingImage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}
#remoteSelf{
    height:200px;
}
/* OPTIONS PANEL */
.options-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    display: none;
    width: 260px;
    z-index: 999 !important;
    background: rgba(0, 0, 0, .75);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,.45);
    backdrop-filter: blur(4px);
}

    .options-panel .option-title {
        background: rgba(255,255,255,.9);
        color: #111;
        padding: 8px;
        text-align: center;
        border-radius: 8px;
        margin-bottom: 8px;
    }

    .options-panel .option-row {
        background: rgba(30,30,30,.9);
        color: white;
        padding: 8px 10px;
        border-radius: 7px;
        margin-bottom: 3px;
        font-size: 14px;
    }

.menu-opt {
    cursor: pointer;
}

    .menu-opt:hover {
        color: var(--blue-soft);
    }

.shortcut-key {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: .8rem;
    color: #ccc;
    text-align: center;
    float: right;
    min-width: 42px;
}

/* DIALOGS */
.ui-widget-overlay {
    background: rgba(0, 0, 0, .92) !important;
    opacity: .92 !important;
}

.ui-dialog {
    border-radius: 14px !important;
    overflow: hidden;
    border: 1px solid var(--border) !important;
}

.ui-dialog-titlebar-close {
    width: 20px;
    height: 20px;
    background-image: url("https://code.jquery.com/ui/1.12.1/themes/base/images/ui-icons_777777_256x240.png");
    background-position: -96px -128px;
    background-repeat: no-repeat;
    float: right;
}

.dlgCloseBtn {
    background-color: var(--red);
    color: var(--white);
    border: 1px solid #7f1d1d;
}

.bDlg {
    margin: 5px !important;
}

/* TEXT AREAS */
.padTextArea,
.textAreaNote {
    width: 100% !important;
    border: 1px solid var(--border);
    outline: none;
    background: #020617;
    color: var(--text);
}

.padTextArea {
    padding: 10px !important;
}

.textAreaNote {
    padding: 20px;
    margin-top: 20px;
    font-size: 1em !important;
    height: 50vh !important;
    display: block !important;
    border-radius: 10px !important;
}

/* MESSAGE PANELS */
.infoLbl {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(239, 68, 68, .65);
    font-size: 16px;
    margin: 20px auto 0;
    background: rgba(127, 29, 29, .25);
    color: #fecaca;
}

/* SMALL WIDTHS */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        padding: 10px;
    }

    .Main-Container {
        width: 100%;
        padding: 5px;
        border-radius: 22px;
    }

    .site-header-inner {
        gap: 10px;
    }

    .browser-badge {
        justify-content: center;
        width: 100%;
    }

    .hero-text {
        padding-left: 4px;
        padding-right: 4px;
    }

    .please-wait {
        top: 140px;
    }

    .remote-video {
        height: 70vh;
    }
}

@media (max-width: 576px) {
    .nebula-join-row {
        max-width: none;
        flex-direction: column;
    }

    .nebula-title-input {
        flex-basis: 240px;
    }

    .meeting-rail .meetingcard,
    .mtg-container .meetingcard {
        flex-basis: 240px;
        width: 240px;
        min-width: 240px;
        max-width: 240px;
    }
}
/* force meeting cards to use full available row */
.meeting-rail,
.mtg-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, 350px) !important;
    justify-content: start !important;
    gap: 14px !important;
    width: 100% !important;
    max-height: 620px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 4px 6px 12px 4px;
}

    .meeting-rail .meetingcard,
    .mtg-container .meetingcard,
    .meetingcard.nebula-card {
        width: 350px !important;
        min-width: 350px !important;
        max-width: 350px !important;
        flex: none !important;
    }

#organizationList,
#meetingList {
    display: contents;
}

.text-yellow {
    color: var(--yellow) !important;
}

.waitBlock {
    text-align: left;
    width: 40vw;
    font-size:1.5rem;
    margin: auto;
    padding: 20px;
    background-color: rgba(0,0,0,.75);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .25);
}
.disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: not-allowed;
}
.waitTime {
    margin-top: 10px;
    opacity: 0.8;
    letter-spacing: 1px;
}
.waitTitle {
    color: var(--yellow);
    line-height: 1 !important;   
}

.please-wait {
    position: relative;
    height: 100vh;
    overflow: hidden;
    top: 17px;
    left: 8px;
    text-align: center;
    z-index: 9;
}
.meeting-room {
    min-height:120px;
    max-width: 400px;
    position: relative;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient( 145deg, rgba(20, 30, 48, 0.96), rgba(36, 59, 85, 0.92) );
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset, 0 10px 30px rgba(0,0,0,0.45), 0 0 18px rgba(0,180,255,0.12);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    /* subtle glowing top line */
    .meeting-room::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient( 90deg, rgba(0,255,255,0), rgba(0,255,255,0.9), rgba(0,255,255,0) );
    }

    /* hover effect */
    .meeting-room:hover {
        transform: translateY(-4px) scale(1.01);
        border-color: rgba(0,255,255,0.25);
        box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset, 0 18px 40px rgba(0,0,0,0.55), 0 0 25px rgba(0,220,255,0.25);
    }
.room {
    display: flex;
    flex-wrap: wrap;
}
.rooms-container{
    text-align:left;
}
.room-name {
    color: yellow;
    display: inline-block;
    margin:5px;
    max-width: 382px;
}

.room-info{
    color:white;
    text-align:left;
}
.bi{
    margin-right:5px;
}

@keyframes twinkle {
    0% {
        opacity: 0.6;
        filter: brightness(0.9);
    }

    50% {
        opacity: 1;
        filter: brightness(1.4);
    }

    100% {
        opacity: 0.6;
        filter: brightness(0.9);
    }
}

@keyframes nebulaPulse {
    0% {
        transform: scale(.72);
        opacity: 0;
    }

    40% {
        opacity: .65;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}