:root {
  --green: #85c545;
  --ink: #212529;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #f6f7f5;
  --card: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.dot { margin: 0 0.35rem; color: var(--muted); }

/* ── Global Bootstrap overrides, copied from the original app's styles.scss ── */
.btn { border-radius: 0; }
.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: none !important;
  box-shadow: none !important;
}
.form-control {
  border: none;
  border-bottom: 1px solid #d2cfcf;
  border-radius: 0;
}
.form-control:focus {
  color: #495057;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}
.modal-content { border-radius: 0 !important; }

/* Dashboard ghost button (camelon). */
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

/* ── Login: white full-height canvas ── */
.login-page { background: #fff; min-height: 100vh; }

/* ── login.component.scss, ported verbatim ── */
.section-login .bg-banner {
  background-image: url('/assets/images/banner_logo.jpg');
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-login .login-btns { width: 25%; }
@media (min-width: 300px) and (max-width: 767px) {
  .section-login .login-btns { width: 50%; }
}
.section-login .login-btns button { font-size: 80%; }
.section-login .login-btns .btn-fb { background-color: #4267b2; color: #fff; }
.section-login .login-btns .btn-google { background-color: #f44336; color: #fff; }
.section-login .login-btns .btn-sms { background-color: #e53935; color: #fff; }
.section-login .login-btns .btn-apple { background-color: #000000; color: #fff; }

.section-sms .bg-banner {
  background-image: url('/assets/images/banner_phone.png');
  height: 180px !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-sms form .form-control {
  border: none;
  border-bottom: 1px solid #d2cfcf;
  border-radius: 0;
}
.section-sms span {
  font-size: 62%;
  text-align: center;
  position: relative;
  top: 10px;
  color: #868383;
}
.section-sms .login-btns button { font-size: 80%; }
.section-sms .login-btns .btn-fb { background-color: #4267b2; color: #fff; }
.section-sms .login-btns .btn-google { background-color: transparent; color: #2564e2; }

.otp-section input[type='text'] {
  width: 39px;
  height: 45px;
  border-radius: 0px;
  border-color: #b8b8b8;
  margin: 3px;
}
.otp-section h5 { font-size: 90%; text-align: center; line-height: 1.6; }
.otp-section label { font-size: 16px; font-weight: 600; }
.otp-section .otp-text { font-size: 75% !important; }
.otp-section .otp-text p { color: #3133ce !important; cursor: pointer; display: inline; }
.otp-section .error-msg { padding: 0px 17% 20px; color: red; font-size: 75% !important; }
.otp-section .login-btns .btn-fb { width: 90%; }

/* ═══════════════════════════════════════════════════════════════════════════
   Dashboard — ported verbatim from the original Angular app's SCSS:
     view-dashboard.component.scss      (left side menu + main page)
     dashboard-time-line.component.scss (center timeline)
     chat-side-nav.component.scss       (right chat side-nav)
   Class names mirror the original templates so the markup is a 1:1 port.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Dashboard shell — clean flexbox 3-column layout.
   (The original used position:fixed sidebars + position:absolute main-page with
   left:32vw, which leaves dead space whenever a column changes width. Flexbox
   keeps all three columns in normal flow: the center fills the remaining space
   so there's never a gap, and it reflows responsively.) */
.nav-screen {
  display: flex;
  height: 100vh;
  overflow: hidden;
}
.nav-screen .side-menu-wrapper {
  flex: 0 0 auto;
  position: relative;
  z-index: 1001;
  display: flex;
}
.nav-screen .side-menu-container {
  display: flex;
  height: 100vh;
  width: 32vw;
  max-width: 460px;
  transition: transform 0.3s ease-in-out;
}
/* Left menu toggle only exists on mobile — hidden on desktop, exactly like the
   original (menu-toggle-btn: visibility hidden at min-width 800px). */
.nav-screen .menu-toggle-btn { display: none; }
.nav-screen .side-menu-content {
  display: flex;
  width: 100%;
  height: 100vh;
}
.nav-screen .users-list {
  background: #4a4747;
  color: #fff;
  padding: 0;
  padding-bottom: 100px;
  flex: 0 0 32%;
  overflow: auto;
  height: 100vh;
}
.nav-screen .users-list .networks {
  overflow-y: auto;
  overflow-x: hidden;
}
.nav-screen .users-list .active {
  background: #ec433c;
}
.nav-screen .users-list .users {
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 2px;
}
.nav-screen .users-list a.users,
.nav-screen .users-list a.users:hover {
  color: #fff;
  text-decoration: none;
}
.nav-screen .users-list .users img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.nav-screen .users-list .users span {
  font-size: 10px;
  padding: 5px;
  width: 70px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
}
.nav-screen .users-list .users:hover {
  background: #ec433c;
}
.nav-screen .menu-items {
  background: #ec433c;
  padding: 0;
  overflow-y: auto;
  flex: 1;
}
.nav-screen .menu-items img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.nav-screen .menu-items .user-details {
  position: relative;
}
.nav-screen .menu-items .user-details .edit-icon {
  position: absolute;
  background: #fff;
  cursor: pointer;
  border-radius: 50%;
  padding: 3px;
  margin-top: 2.6em;
  margin-left: 1.5em;
  width: 25px;
  height: 25px;
  visibility: hidden;
}
.nav-screen .menu-items .user-details .edit-icon img {
  width: 15px;
  height: 15px;
  margin-bottom: 7px;
  margin-left: 3px;
}
.nav-screen .menu-items .user-details:hover .edit-icon {
  visibility: visible;
}
.nav-screen .menu-items .user-details .status-green {
  background-color: #4cd964;
  width: 10px;
  height: 10px;
  margin-top: 5px;
}
.nav-screen .menu-items .user-name {
  font-size: 90%;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
}
.nav-screen .menu-items .user-state {
  font-size: 90%;
  text-align: center;
  color: #fff;
}
.nav-screen .menu-items .menu-list {
  width: 100%;
  height: 75%;
}
.nav-screen .menu-items .menu-list ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-screen .menu-items .menu-list ul .active {
  background: #d02a26;
}
.nav-screen .menu-items .menu-list ul li {
  background: transparent;
  border-radius: 0;
  border: none;
  border-top: 1px solid #f06160;
  padding: 8px 15px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.nav-screen .menu-items .menu-list ul li img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.nav-screen .menu-items .menu-list ul li span {
  position: relative;
  top: 1px;
  left: 3px;
}
.nav-screen .menu-items .menu-list ul li:hover {
  background-color: #d02a26;
}
.nav-screen .menu-items .menu-list ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
}

.main-page {
  flex: 1 1 auto;
  min-width: 0;
  height: 100vh;
  overflow-y: auto;
}

.network-members {
  flex: 0 0 250px;
  position: relative;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: flex-basis 0.3s ease;
}
.network-members.collapsed {
  flex-basis: 0;
  box-shadow: none;
}

.fab-btn .add-network {
  background: transparent;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  border: 2px dotted #c7c2c2;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fab-btn img {
  width: 35px;
  height: 35px;
}

/* Mobile: the left menu becomes a slide-in overlay with a visible toggle, and
   the center goes full-width — mirrors the original's max-width:800px rules. */
@media (max-width: 800px) {
  .nav-screen .side-menu-wrapper { position: static; }
  .nav-screen .side-menu-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    z-index: 1001;
    box-shadow: 4px 2px 5px rgba(0, 0, 0, 0.1);
  }
  .nav-screen .side-menu-container.collapsed {
    transform: translateX(-100%);
  }
  .nav-screen .menu-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    width: 56px;
    height: 56px;
    right: -56px;
    z-index: 1002;
    background: #b9b9b8;
    color: #fff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    font-size: 22px;
    outline: none;
  }
  .nav-screen .menu-toggle-btn.collapsed { background: #b9b9b8; }
  .nav-screen .menu-toggle-btn:not(.collapsed) {
    background: #ec433c;
    border-radius: 0 8px 8px 0;
  }
  /* Right user-info panel becomes a fixed overlay so it never squeezes the
     narrow center column. */
  .network-members {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    flex: none;
    width: 250px;
    transform: translateX(0);
    transition: transform 0.3s ease;
  }
  .network-members.collapsed { transform: translateX(100%); }
  /* The account toggle sits flush in the grey top bar (same grey, full bar
     height, no rounding) — part of the bar, not a floating box. */
  .chat-toggle-btn.collapsed {
    top: 0;
    right: 0;
    width: 56px;
    height: 56px;
    background: #b9b9b8;
    border-radius: 0;
    box-shadow: none;
  }
  /* Fixed-height grey top bar; the two toggles align flush inside it. */
  .main-page > section > header,
  .main-page > section > .header,
  .main-page > section > div > .header {
    height: 56px;
    display: flex;
    align-items: center;
    padding-left: 64px !important;
    padding-right: 60px !important;
  }
}

/* All page headers share one height so the fixed toggle buttons (top:0,
   height:56px) line up vertically centered inside the grey bar on every route. */
.main-page > section > header,
.main-page > section > .header,
.main-page > section > div > .header {
  min-height: 56px;
  display: flex;
  align-items: center;
}

/* ── dashboard-time-line.component.scss ── */
.time-line-section header {
  background: #b9b9b8;
  color: #fff;
  font-weight: 600;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 3;
}
.time-line-div {
  margin-top: 0;
}
.time-line-div .members-notification {
  margin-top: 0.5em;
  background: #ecf0f1;
}
.time-line-div .members-notification .title {
  font-size: 13px;
  font-weight: 600;
  padding: 1em 0.5em;
}
.time-line-div .time-line {
  background-color: #ffffff;
  color: #000;
  border-radius: 5px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.23);
  cursor: pointer;
}
.time-line-div .time-line img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.time-line-div .time-line .sign-details .user-name {
  font-weight: 600;
  text-transform: capitalize;
}
.time-line-div .time-line .sign-details .sign-name {
  font-size: 13px;
  text-transform: capitalize;
}
.time-line-div .time-line .sign-details .sign-time {
  font-size: 10px;
}
.time-line-div .time-line:hover {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19), 0 4px 8px rgba(0, 0, 0, 0.23);
}
.time-line-div .imagethumbnail-dashboard-card {
  width: 60px;
  height: 60px;
}

/* ── Right column (Network Members / Groups / profile).
   A flex item that collapses to zero width; the toggle is position:fixed so it
   stays reachable when the panel is closed. ── */
.chat-toggle-btn {
  position: fixed;
  top: 0;
  right: 250px;
  width: 56px;
  height: 56px;
  z-index: 1002;
  background: #fff;
  color: #4a4747;
  border: none;
  cursor: pointer;
  font-size: 22px;
  box-shadow: -4px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px 0 0 8px;
  transition: right 0.3s ease, background 0.3s ease;
  outline: none;
}
.chat-toggle-btn.collapsed {
  right: 0;
  background: #b9b9b8;
  color: #fff;
  border-radius: 0;
  box-shadow: none;
}
.chat-toggle-btn .cross-right { display: block; font-size: 22px; }
.chat-toggle-btn .account-icon-side-nav { display: block; width: 30px; height: 30px; }
.chat-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-screen .menu-toggle-btn .cross-left { display: block; font-size: 22px; color: #fff; }
.nav-screen .menu-toggle-btn .hamburger-image-side-nav { display: block; width: 25px; }
.chat-side-nav-content {
  width: 250px;
  height: 100vh;
  overflow-y: auto;
  padding: 20px;
}
.chat-side-nav-content section {
  overflow-y: auto;
  height: 100%;
}
.chat-side-nav-content .user-details {
  position: relative;
}
.chat-side-nav-content .user-details img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.chat-side-nav-content .user-details .dummy-user-pic {
  color: white;
  background-color: #4cd964;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 2rem;
}
.chat-side-nav-content .user-details .user-name {
  font-size: 90%;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
}
.chat-side-nav-content .user-details button {
  background: #4a4747;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.chat-side-nav-content .user-details button img {
  width: 20px;
  height: 20px;
  margin-bottom: 3px;
}
.chat-side-nav-content .user-details button:hover {
  background: #ec433c;
}
.chat-side-nav-content .accordion-heading {
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid #b9b9b8;
}
.chat-side-nav-content .chat-users {
  border-bottom: 1px solid #b9b9b8;
  padding: 5px;
}
.chat-side-nav-content .chat-users img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.chat-side-nav-content .chat-users .user-name {
  font-size: 11px;
  font-weight: bold;
  text-transform: capitalize;
}
.chat-side-nav-content .chat-users .user-relation {
  font-size: 10px;
  color: #6f6f6f;
  text-transform: capitalize;
}
.chat-side-nav-content .chat-group .grup-details {
  border-bottom: 1px solid #b9b9b8;
}
.chat-side-nav-content .chat-group .grup-name {
  font-size: 11px;
  font-weight: bold;
  text-transform: capitalize;
}

@media all and (display-mode: standalone) {
  body { background: var(--card); }
}

/* ═══ Library — ported from library-list + my-signs + detail-card scss ═══ */
.library-section .header {
  background: #b9b9b8;
  color: #fff;
  font-weight: 600;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 3;
  align-items: center;
}
.library-section .header .search input[type='text'] {
  background: #ededed;
  border: solid 1px #ccc;
  padding: 5px 5px 5px 12px;
  width: 130px;
  border-radius: 15px;
  outline: none;
  font-size: 80%;
  transition: all 0.5s;
}
.library-section .header .search input[type='text']:focus {
  background-color: #fff;
  border-color: #74685b;
  box-shadow: 3px 4px 12px 2px rgba(160, 160, 160, 0.5);
}
.library-section .tab-signs {
  margin-top: 0;
}
.library-section .lib-tabset {
  display: flex;
  gap: 0.3rem;
  list-style: none;
  padding: 0 0.5rem;
  margin: 0;
  border-bottom: 1px solid #ddd;
}
.library-section .lib-tabset li a {
  display: block;
  padding: 8px 14px;
  color: #495057;
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid transparent;
  border-bottom: none;
}
.library-section .lib-tabset li.active a {
  color: #495057;
  background: #fff;
  border-color: #dee2e6;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  margin-bottom: -1px;
  font-weight: 600;
}
.library-section .create-sign .upload-image {
  height: 200px;
  background-color: #bbbbbb;
  cursor: pointer;
}
.library-section .create-sign .sign-text {
  color: #6f6b6b;
  cursor: pointer;
}
.library-section .lib-accordion {
  margin-bottom: 8px;
}
.library-section .lib-accordion-head {
  position: relative;
  cursor: pointer;
  padding: 10px 12px;
  background: #f7f7f7;
  border: 1px solid #e2e2e2;
  font-weight: 600;
  list-style: none;
  text-transform: capitalize;
}
.library-section .lib-accordion-head::-webkit-details-marker { display: none; }
.library-section .lib-accordion-head .sign-count {
  position: absolute;
  right: 40px;
  top: 10px;
  font-weight: 400;
  font-size: 0.85rem;
  color: #6d6d6d;
}
.library-section .signs-card {
  padding: 0;
  padding-right: 10px;
  margin-bottom: 10px;
}
.library-section .signs-card-det {
  cursor: pointer;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 2px;
}
.library-section .title-container {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.library-section .signs-title {
  font-weight: 800;
  text-transform: capitalize;
}
.library-section .img-container { height: 180px; }
.library-section .sigs-img {
  width: 100%;
  object-position: center;
  height: 100%;
  object-fit: contain;
  padding-left: 10px;
  padding-right: 10px;
}
.library-section .sign-user { background: #f4f4f4; }
.library-section .sign-user .user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.library-section .sign-user .user-name {
  font-size: 14px;
  text-transform: capitalize;
}
.library-section .sign-user .sign-time {
  font-size: 10px;
  color: #8c8c7e;
}
.library-section .empty-lib { color: #6d6d6d; text-align: center; }

/* ═══ Create sign — ported from sign-create.component.scss ═══ */
.create-section .header {
  background: #b9b9b8;
  color: #fff;
  font-weight: 600;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 3;
}
.create-section .bg-image {
  margin-top: 4.5em;
}
.create-section .bg-image img {
  width: 250px;
  height: 250px;
  object-fit: contain;
}
.create-section .create-sign-form label { font-weight: 700; }
.create-section .video-sign .form-control { padding: 0; }
.create-section .video-upload {
  height: 300px;
  position: relative;
  background: #f4f4f4;
  border: 1px dashed #ccc;
  margin-top: 10px;
}
.create-section .image-sign button { margin-top: 1em; }
.create-section .add .cat-list {
  background: #3c3b3b;
  margin-right: 5px;
  margin-top: 5px;
  border-radius: 5px;
  color: #fff;
}
.create-section .add .cat-list .cat-name { padding: 0 5px; }

/* ═══ Members — ported from view-members + my-profile + members-list scss ═══ */
.members-section .header {
  background: #b9b9b8;
  color: #fff;
  font-weight: 600;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 3;
}
.members-section .my-profile { margin-top: 0; }
.members-section .user-profile {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.23);
}
.members-section .my-profile .profile-title {
  background: #ec433c;
  color: #fff;
  padding: 10px 10px 5px 5px;
  position: relative;
}
.members-section .my-profile .profile-title h4 {
  text-transform: capitalize;
  font-size: larger;
  margin: 0;
}
.members-section .my-profile .pro-picture img { width: 150px; height: 150px; object-fit: cover; }
.members-section .user .status-class .name-user {
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}
.members-section .user .status-class .status {
  background-color: #4cd964;
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  margin-left: 4px;
}
.members-section .user .network-user {
  text-transform: capitalize;
  font-size: small;
  color: #757474;
  text-align: center;
}
.members-section .member-tabset {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}
.members-section .member-tabset li a {
  display: block;
  padding: 8px 12px;
  color: #495057;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}
.members-section .member-tabset li.active a {
  border-bottom: 2px solid #ec433c;
}
.members-section .member-tabset .badge {
  background: #6c757d;
  color: #fff;
  border-radius: 0.4rem;
  padding: 1px 5px;
  font-size: 0.7rem;
}
.members-section .signs-card .pro-picture img { width: 100px; height: 100px; object-fit: cover; }

/* ═══ Settings — ported from settings.component.scss ═══ */
.settings-section .header {
  background: #b9b9b8; color: #fff; font-weight: 600;
  position: sticky; top: 0; z-index: 3;
}
.settings-section .settings { margin-top: 0; }
.settings-section .setting-title { color: #737070; font-weight: 600; }
.settings-section .setting-sub-title { font-size: 14px; }
.switch { position: relative; display: inline-block; width: 40px; height: 18px; }
.switch input { display: none; }
.slider {
  position: absolute; cursor: pointer; inset: 0;
  background-color: #ccc; transition: 0.4s;
}
.slider:before {
  position: absolute; content: ''; height: 25px; width: 25px;
  left: -5px; bottom: -4px; background-color: #ec433c; transition: 0.4s;
}
input:checked + .slider:before { background-color: #18b60a; transform: translateX(26px); }
.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

/* ═══ Account — ported from account.component.scss ═══ */
.account-section .header {
  background: #b9b9b8; color: #fff; font-weight: 600;
  position: sticky; top: 0; z-index: 3;
}
.account-section .accounts { margin-top: 0; }
.account-section .card-acc {
  box-shadow: 0 2px 2px rgba(0,0,0,0.16), 0 2px 6px rgba(0,0,0,0.23);
  position: relative;
}
.account-section .card-acc img { width: 120px; height: 120px; border-radius: 8px; object-fit: cover; }
.account-section .user-name-acc { text-transform: capitalize; font-weight: 700; }
.account-section .user-text-acc { color: #757474; font-size: 0.9rem; }
.account-section .about-acc span:first-child { font-weight: 700; }

/* ═══ Subscriptions — ported from subscriptions.component.scss ═══ */
.subscriptions-section header {
  background: #b9b9b8; color: #fff; font-weight: 600;
  position: sticky; top: 0; z-index: 3;
}
.subscriptions-section .subscription { margin-top: 0; }
.subscriptions-section .user-title { font-weight: 700; margin-right: 5px; }
.subscriptions-section .user-name { text-transform: capitalize; }
.subscriptions-section .product-labels { border: 1px solid; cursor: pointer; }
.subscriptions-section .product-labels.danger { border-color: #ec433c; color: #ec433c; }
.subscriptions-section .product-labels.success { border-color: #4cd964; color: #4cd964; }
.subscriptions-section .hr-line { border-top: 1px solid #e2e2e2; margin: 1rem 0; }

/* ═══ Rapport — ported from rapport-list + rapport-sign-list scss ═══ */
.rapport-section .header {
  background: #b9b9b8; color: #fff; font-weight: 600;
  position: sticky; top: 0; z-index: 3;
}
.rapport-section .tab-signs { margin-top: 0; }
.rapport-section .rapport-tabset {
  display: flex; gap: 0.3rem; list-style: none; padding: 0 0.5rem; margin: 0;
  border-bottom: 1px solid #ddd; flex-wrap: wrap;
}
.rapport-section .rapport-tabset li a {
  display: block; padding: 8px 12px; color: #495057;
  text-decoration: none; font-size: 0.85rem; font-weight: 600;
}
.rapport-section .rapport-tabset li.active a { border-bottom: 2px solid #ec433c; }
.rapport-section .settings-container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 15px;
}
.rapport-section .start-game-title { margin: 20px 0; font-size: 42px; }
.rapport-section .table-div { margin-top: 1rem; }
.rapport-section .table-responsive { overflow-x: auto; }
.rapport-section table {
  border-collapse: collapse; width: 100%; min-width: 600px;
  background-color: #f2f2f2; border-radius: 5px;
}
.rapport-section .table-header { background-color: #d9d9d9; }
.rapport-section th, .rapport-section td {
  text-align: left; padding: 8px; white-space: nowrap;
  border-bottom: 1px solid #e2e2e2;
}
.rapport-section .clickable-row { cursor: pointer; }
.rapport-section .clickable-row:hover { background: #ececec; }

/* ═══ Stubs — Group + Multiplayer (external infra, static shells) ═══ */
.stub-section .header {
  background: #b9b9b8; color: #fff; font-weight: 600;
  position: sticky; top: 0; z-index: 3;
}
.stub-section .stub-body { margin-top: 0; }
.stub-section .start-game-title { margin: 20px 0; font-size: 42px; }
.stub-section .stub-note {
  margin-top: 1.5rem; color: #757474; max-width: 640px; line-height: 1.6;
  background: #f4f4f4; border-left: 3px solid #ec433c; padding: 0.9rem 1.1rem;
}
.stub-group-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.stub-group-item {
  padding: 10px 12px; border: 1px solid #e2e2e2; margin-bottom: 6px;
  text-transform: capitalize; font-weight: 600;
}
