/* =========================================
   AirportStreams.Live
   Base Framework Styles
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Segoe UI", sans-serif;
    background: #0b1220;
    color: white;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
    border: none;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}
/*
=========================================================
GLOBAL PAGE LAYOUT
=========================================================
*/

:root {
    --navbar-height: 110px;
}

.page-shell-aps {
    padding-top: var(--navbar-height);
}

/*
=========================================================
COMMUNITY PAGE LAYOUT
=========================================================
*/

.community-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

.community-messages {
    height: 600px;
    overflow-y: auto;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255,255,255,.04);
}

.community-input {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

    .community-input input {
        flex: 1;
    }

.community-stats {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.typing-indicator {
    color: #8fbfff;
    font-size: 14px;
    min-width: 150px;
}

.chat-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    margin-right: 8px;
    text-transform: uppercase;
}

    .chat-badge.Free {
        background: #444;
        color: #fff;
    }

    .chat-badge.Business {
        background: #0078d4;
        color: #fff;
    }

    .chat-badge.First {
        background: linear-gradient( 135deg, #d4af37, #f5d76e);
        color: #000;
    }

.chat-username {
    cursor: pointer;
    font-weight: 700;
    color: #ffffff;
}

    .chat-username:hover {
        color: #4da3ff;
    }

.chat-user-menu {
    position: absolute;
    display: none;
    min-width: 220px;
    background: #1b1b1b;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
    box-shadow: 0 8px 20px rgba(0,0,0,.4);
}

.chat-user-menu-item {
    padding: 12px 15px;
    cursor: pointer;
}

    .chat-user-menu-item:hover {
        background: #2f2f2f;
    }

.chat-mod-badge {
    margin-right: 6px;
    color: #4da3ff;
}

.deleted-message-review {
    margin-top: 8px;
}

.show-deleted-btn {
    background: #2f2f2f;
    border: 1px solid #555;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.deleted-original-message {
    margin-top: 8px;
    padding: 10px;
    border-left: 3px solid #ff9800;
    background: rgba(255,152,0,.08);
    font-style: italic;
}


