/* /Components/CardActivityList.razor.rz.scp.css */
/* Activity Section */
.activity-section[b-6pqj3m8sut] {
  background-color: var(--theme-bg-primary);
  border-radius: var(--theme-radius-lg);
  padding: var(--theme-spacing-xl);
  border: none;
  margin-bottom: var(--theme-spacing-xl);
}

.activity-list-container[b-6pqj3m8sut] {
  display: flex;
  flex-direction: column;
  gap: var(--theme-spacing-md);
}

.activity-item[b-6pqj3m8sut] {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-lg);
  padding: var(--theme-spacing-md);
  background-color: var(--theme-bg-tertiary);
  border-radius: var(--theme-radius-md);
  cursor: pointer;
  transition: background-color var(--theme-transition-normal);
  margin-bottom: var(--theme-spacing-md);
}

.activity-item:hover[b-6pqj3m8sut] {
  background-color: var(--theme-bg-quaternary);
}

.activity-content[b-6pqj3m8sut] {
  flex: 1;
}

.activity-title[b-6pqj3m8sut] {
  font-weight: var(--theme-font-weight-semibold);
  color: var(--theme-text-primary);
  font-size: var(--theme-font-size-md);
}

.checkmark[b-6pqj3m8sut] {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-accent-green);
  color: var(--theme-text-inverse);
  border-radius: var(--theme-radius-sm);
  font-weight: var(--theme-font-weight-bold);
  font-size: var(--theme-font-size-md);
}
/* /Components/DashboardActivityList.razor.rz.scp.css */

/* Activity Section */
.activity-section[b-05yd17ztm3] {
  background-color: var(--theme-bg-primary);
  border-radius: var(--theme-radius-lg);
  padding: var(--theme-spacing-xl);
  border: none;
  margin-bottom: var(--theme-spacing-xl);
}

.activity-list[b-05yd17ztm3] {
  display: flex;
  flex-direction: column;
  gap: var(--theme-spacing-md);
}

.activity-item[b-05yd17ztm3] {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-lg);
  padding: var(--theme-spacing-md);
  background-color: var(--theme-bg-tertiary);
  border-radius: var(--theme-radius-md);
  transition: background-color var(--theme-transition-normal);
}

.activity-item.clickable[b-05yd17ztm3] {
  cursor: pointer;
}

.activity-item:hover[b-05yd17ztm3] {
  background-color: var(--theme-bg-quaternary);
}

.activity-content[b-05yd17ztm3] {
  flex: 1;
}

.activity-title[b-05yd17ztm3] {
  font-weight: var(--theme-font-weight-semibold);
  color: var(--theme-text-primary);
  font-size: var(--theme-font-size-md);
}

.checkmark[b-05yd17ztm3] {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-accent-green);
  color: var(--theme-text-inverse);
  border-radius: var(--theme-radius-sm);
  font-weight: var(--theme-font-weight-bold);
  font-size: var(--theme-font-size-md);
}
/* /Components/RedirectToLogin.razor.rz.scp.css */
.loading-container[b-htnex6brz8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: var(--theme-bg-primary);
    color: var(--theme-text-primary);
    font-family: var(--theme-font-family);
}

.loading-spinner[b-htnex6brz8] {
    width: 40px;
    height: 40px;
    border: 4px solid var(--theme-border-primary);
    border-top: 4px solid var(--theme-accent-blue);
    border-radius: 50%;
    animation: spin-b-htnex6brz8 1s linear infinite;
    margin-bottom: var(--theme-spacing-lg);
}

@keyframes spin-b-htnex6brz8 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* /Components/ServicesActivityList.razor.rz.scp.css */
.service-card[b-jajdqvux7z] {
  background-color: var(--theme-bg-tertiary);
  border-radius: var(--theme-radius-md);
  padding: var(--theme-spacing-xl);
  border: 1px solid var(--theme-border-secondary);
  transition: all var(--theme-transition-normal);
}

.service-card:hover[b-jajdqvux7z] {
  transform: translateY(-2px);
  box-shadow: var(--theme-shadow-md);
}
.services-grid[b-jajdqvux7z] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--theme-spacing-lg);
}
.service-header[b-jajdqvux7z] {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-lg);
  margin-bottom: var(--theme-spacing-lg);
}

.service-description[b-jajdqvux7z] {
  font-size: var(--theme-font-size-sm);
  color: var(--theme-text-secondary);
}

.service-btn[b-jajdqvux7z] {
  width: 100%;
  padding: var(--theme-spacing-md) var(--theme-spacing-lg);
}
/* /Components/UserMenuDropdown.razor.rz.scp.css */
/* ========================================
   USER MENU DROPDOWN STYLES
   ======================================= */

.dropdown-overlay[b-12yyp3yc5r] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: transparent;
}

.user-menu-dropdown[b-12yyp3yc5r] {
    position: relative;
    margin-top: auto;
    padding: var(--theme-spacing-lg) var(--theme-spacing-xl);
    border-top: 1px solid var(--theme-border-primary);
}

.user-menu-actions[b-12yyp3yc5r] {
    display: flex;
    align-items: center;
    gap: var(--theme-spacing-sm);
}

.dropdown-toggle[b-12yyp3yc5r] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--theme-spacing-sm);
    flex: 1;
    height: 40px;
    padding: 0 var(--theme-spacing-md);
    background: var(--theme-bg-tertiary);
    border: 1px solid var(--theme-border-primary);
    border-radius: var(--theme-radius-lg);
    cursor: pointer;
    transition: all var(--theme-transition-normal);
    font-size: var(--theme-font-size-sm);
}

.dropdown-toggle:hover[b-12yyp3yc5r] {
    background-color: var(--theme-bg-quaternary);
    border-color: var(--theme-border-secondary);
    transform: scale(1.05);
}

.quick-logout-button[b-12yyp3yc5r] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--theme-accent-red);
    color: var(--theme-text-inverse);
    border: 1px solid var(--theme-accent-red);
    border-radius: var(--theme-radius-lg);
    cursor: pointer;
    transition: all var(--theme-transition-normal);
}

.quick-logout-button:hover[b-12yyp3yc5r] {
    background-color: #dc2626;
    border-color: #dc2626;
    transform: scale(1.05);
}

.user-icon[b-12yyp3yc5r] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-name[b-12yyp3yc5r] {
    color: var(--theme-text-primary);
    font-weight: var(--theme-font-weight-medium);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu[b-12yyp3yc5r] {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: var(--theme-spacing-sm);
    background: var(--theme-bg-primary);
    border: 1px solid var(--theme-border-primary);
    border-radius: var(--theme-radius-lg);
    box-shadow: var(--theme-shadow-lg);
    min-width: 200px;
    z-index: 1000;
    overflow: hidden;
    animation: dropdownFadeIn-b-12yyp3yc5r 0.2s ease;
}

.dropdown-item[b-12yyp3yc5r] {
    display: flex;
    align-items: center;
    gap: var(--theme-spacing-md);
    padding: var(--theme-spacing-md) var(--theme-spacing-lg);
    cursor: pointer;
    transition: background-color var(--theme-transition-normal);
    color: var(--theme-text-primary);
    text-decoration: none;
    font-size: var(--theme-font-size-sm);
}

.dropdown-user-summary[b-12yyp3yc5r] {
    padding: var(--theme-spacing-md) var(--theme-spacing-lg);
    background: var(--theme-bg-secondary);
}

.dropdown-user-name[b-12yyp3yc5r] {
    color: var(--theme-text-primary);
    font-weight: var(--theme-font-weight-semibold);
    font-size: var(--theme-font-size-sm);
}

.dropdown-user-role[b-12yyp3yc5r] {
    color: var(--theme-text-secondary);
    font-size: var(--theme-font-size-xs);
    margin-top: var(--theme-spacing-xs);
}

.dropdown-item:hover[b-12yyp3yc5r] {
    background-color: var(--theme-bg-tertiary);
}

.dropdown-item.logout-item:hover[b-12yyp3yc5r] {
    background-color: var(--theme-accent-red);
    color: var(--theme-text-inverse);
}

.item-icon[b-12yyp3yc5r] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    font-size: var(--theme-font-size-md);
}

.item-text[b-12yyp3yc5r] {
    flex: 1;
    font-weight: var(--theme-font-weight-medium);
}

.dropdown-divider[b-12yyp3yc5r] {
    height: 1px;
    background-color: var(--theme-border-primary);
    margin: var(--theme-spacing-xs) 0;
}

/* Animation */
@keyframes dropdownFadeIn-b-12yyp3yc5r {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .user-menu-dropdown[b-12yyp3yc5r] {
        padding: var(--theme-spacing-md);
    }
    
    .dropdown-menu[b-12yyp3yc5r] {
        min-width: 180px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 100%;
        margin-bottom: var(--theme-spacing-md);
    }
    
    @keyframes dropdownFadeIn-b-12yyp3yc5r {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }
}
/* /Layout/LoginLayout.razor.rz.scp.css */
.login-layout[b-18vc8wa7tr] {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: var(--theme-bg-primary);
    font-family: var(--theme-font-family);
    transition: background var(--theme-transition-normal);
}

.theme-toggle-container[b-18vc8wa7tr] {
    position: absolute;
    top: var(--theme-spacing-lg);
    right: var(--theme-spacing-lg);
    z-index: 100;
}

.theme-toggle-btn[b-18vc8wa7tr] {
    background: var(--theme-bg-secondary);
    border: 1px solid var(--theme-border-primary);
    border-radius: var(--theme-radius-full);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--theme-transition-normal);
    box-shadow: var(--theme-shadow-sm);
}

.theme-toggle-btn:hover[b-18vc8wa7tr] {
    background: var(--theme-bg-tertiary);
    transform: scale(1.05);
    box-shadow: var(--theme-shadow-md);
}

.theme-toggle-btn:active[b-18vc8wa7tr] {
    transform: scale(0.95);
}

.login-main[b-18vc8wa7tr] {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* ========================================
   MAINLAYOUT STYLES
   ======================================= */

/* Reset & Base */
*[b-fs7hu1h3u1] {
  margin: 0;
  padding: 0; 
  box-sizing: border-box;
}

html[b-fs7hu1h3u1], body[b-fs7hu1h3u1] {
  font-family: var(--theme-font-family);
  height: 100vh;
  overflow: hidden;
}

body[b-fs7hu1h3u1] {
  background-color: var(--theme-bg-primary);
  color: var(--theme-text-primary);
  transition: background-color var(--theme-transition-normal), color var(--theme-transition-normal);
}

/* Main App Container */
.app-container[b-fs7hu1h3u1] {
  display: flex;
  height: 100vh;
  background-color: var(--theme-bg-primary);
  color: var(--theme-text-primary);
  font-family: var(--theme-font-family);
}

/* Sidebar Layout */
.sidebar[b-fs7hu1h3u1] {
  width: var(--theme-sidebar-width);
  background: var(--theme-bg-primary);
  /* border-right: 1px solid var(--theme-border-primary); */
  display: flex;
  flex-direction: column;
  transition: all var(--theme-transition-normal);
}

.sidebar-header[b-fs7hu1h3u1] {
  padding: var(--theme-spacing-xl);
  border-bottom: 1px solid var(--theme-border-primary);
}

.logo[b-fs7hu1h3u1] {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-md);
  font-size: var(--theme-font-size-xl);
  font-weight: var(--theme-font-weight-bold);
  color: var(--theme-text-primary);
  text-decoration: none;
}

.logo span:first-child[b-fs7hu1h3u1] {
  font-size: var(--theme-font-size-2xl);
}

.sidebar-nav[b-fs7hu1h3u1] {
  flex: 1;
  padding: var(--theme-spacing-lg) 0;
  padding-top: calc(var(--theme-header-height) + 5px);
}

.nav-section-label[b-fs7hu1h3u1] {
  padding: var(--theme-spacing-lg) var(--theme-spacing-xl) var(--theme-spacing-sm);
  color: var(--theme-text-secondary);
  font-size: var(--theme-font-size-xs);
  font-weight: var(--theme-font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Navigation */
.nav-item[b-fs7hu1h3u1] {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-md);
  padding: var(--theme-spacing-md) var(--theme-spacing-xl);
  color: var(--theme-text-secondary);
  text-decoration: none;
  transition: all var(--theme-transition-normal);
  border-left: 3px solid transparent;
  font-size: var(--theme-font-size-md);
}

.nav-item:hover[b-fs7hu1h3u1] {
  background-color: var(--theme-bg-tertiary);
  color: var(--theme-text-primary);
  border-left-color: var(--theme-accent-blue);
}

.nav-item.active[b-fs7hu1h3u1] {
  background-color: var(--theme-bg-tertiary);
  color: var(--theme-text-primary);
  border-left-color: var(--theme-accent-blue);
  font-weight: var(--theme-font-weight-semibold);
}

/* Main Content Area */
.main-content[b-fs7hu1h3u1] {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--theme-bg-primary);
}

/* Header */
.header[b-fs7hu1h3u1] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--theme-spacing-lg) var(--theme-spacing-xl);
  background-color: var(--theme-bg-primary);
  /* border-bottom: 1px solid var(--theme-border-primary); */
  min-height: var(--theme-header-height);
}

.header-left[b-fs7hu1h3u1] {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-md);
  font-size: var(--theme-font-size-3xl);
  font-weight: var(--theme-font-weight-bold);
  color: var(--theme-text-primary);
  text-decoration: none;
}

.header-right[b-fs7hu1h3u1] {
  display: flex;
  align-items: center;
  gap: var(--theme-spacing-lg);
}

/* Header Components */
.balance-display[b-fs7hu1h3u1] {
  font-size: var(--theme-font-size-md);
  font-weight: var(--theme-font-weight-medium);
  color: var(--theme-text-secondary);
  padding: var(--theme-spacing-sm) var(--theme-spacing-lg);
  background-color: var(--theme-accent-blue);
  color: var(--theme-text-inverse);
  border-radius: var(--theme-radius-md);
}

.theme-toggle-btn[b-fs7hu1h3u1] {
  background: var(--theme-bg-tertiary);
  border: 1px solid var(--theme-border-primary);
  padding: var(--theme-spacing-sm);
  border-radius: var(--theme-radius-md);
  cursor: pointer;
  font-size: var(--theme-font-size-xl);
  transition: all var(--theme-transition-normal);
}

.theme-toggle-btn:hover[b-fs7hu1h3u1] {
  background-color: var(--theme-bg-quaternary);
  border-color: var(--theme-border-secondary);
}

.logout-btn[b-fs7hu1h3u1] {
  background: var(--theme-accent-red);
  border: 1px solid var(--theme-accent-red);
  padding: var(--theme-spacing-sm);
  border-radius: var(--theme-radius-md);
  cursor: pointer;
  font-size: var(--theme-font-size-md);
  transition: all var(--theme-transition-normal);
  color: var(--theme-text-inverse);
}

.logout-btn:hover[b-fs7hu1h3u1] {
  background-color: #dc2626;
  border-color: #dc2626;
  transform: scale(1.05);
}

.top-up-btn[b-fs7hu1h3u1] {
  background-color: var(--theme-accent-green);
  color: var(--theme-text-inverse);
  border: none;
  padding: var(--theme-spacing-sm) var(--theme-spacing-lg);
  border-radius: var(--theme-radius-md);
  font-size: var(--theme-font-size-md);
  font-weight: var(--theme-font-weight-medium);
  cursor: pointer;
  transition: all var(--theme-transition-normal);
  box-shadow: var(--theme-shadow-sm);
}

.top-up-btn:hover[b-fs7hu1h3u1] {
  background-color: var(--theme-accent-green-hover);
  box-shadow: var(--theme-shadow-md);
}

/* Content Area */
.content[b-fs7hu1h3u1] {
  flex: 1;
  padding: var(--theme-spacing-xl);
  overflow-y: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .app-container[b-fs7hu1h3u1] {
    flex-direction: column;
  }
  
  .sidebar[b-fs7hu1h3u1] {
    width: 100%;
    height: auto;
  }
  
  .header[b-fs7hu1h3u1] {
    padding: var(--theme-spacing-lg);
  }
  
  .content[b-fs7hu1h3u1] {
    padding: var(--theme-spacing-lg);
  }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-rw3le5ejd6] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-rw3le5ejd6] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-rw3le5ejd6] {
    font-size: 1.1rem;
}

.bi[b-rw3le5ejd6] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-rw3le5ejd6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-rw3le5ejd6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-rw3le5ejd6] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-rw3le5ejd6] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-rw3le5ejd6] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-rw3le5ejd6] {
        padding-bottom: 1rem;
    }

    .nav-item[b-rw3le5ejd6]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-rw3le5ejd6]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-rw3le5ejd6]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-rw3le5ejd6] {
        display: none;
    }

    .collapse[b-rw3le5ejd6] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-rw3le5ejd6] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Dashboard.razor.rz.scp.css */
/* ========================================
   DASHBOARD PAGE STYLES
   ======================================= */

/* Dashboard Layout */
.dashboard-container[b-9mchodiprv] {
  display: grid;
  grid-template-columns: 0.5fr 1fr 400px;
  gap: var(--theme-spacing-xl);
  height: 100%;
}

.dashboard-main[b-9mchodiprv] {
  display: flex;
  flex-direction: column;
  gap: var(--theme-spacing-xl);
}
.dashboard-main-2nd[b-9mchodiprv] {
  display: flex;
  flex-direction: column;
  gap: var(--theme-spacing-xl);
  grid-column: 1 / -1;
}

.dashboard-middle[b-9mchodiprv] {
  display: flex;
  flex-direction: column;
  gap: var(--theme-spacing-xl);
}

.dashboard-sidebar[b-9mchodiprv] {
  display: flex;
  flex-direction: column;
  gap: var(--theme-spacing-xl);
}

/* Services Section */
.services-section[b-9mchodiprv] {
  background-color: var(--theme-bg-primary);
  border-radius: var(--theme-radius-lg);
  padding: var(--theme-spacing-xl);
  border: none;
  margin-bottom: var(--theme-spacing-xl);
}

/* Hotlines Section */
.hotlines-section[b-9mchodiprv] {
  background-color: var(--theme-bg-primary);
  border-radius: var(--theme-radius-lg);
  padding: var(--theme-spacing-xl);
  border: none;
  margin-bottom: var(--theme-spacing-xl);
}

.hotlines-grid[b-9mchodiprv] {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: var(--theme-spacing-lg);
}

.hotline-card[b-9mchodiprv] {
  /* background-color: var(--theme-bg-tertiary);*/
  /*border-radius: var(--theme-radius-md); */
  padding: var(--theme-spacing-xl);
  /* border: 1px solid var(--theme-border-secondary); */
  display: flex;
  flex-direction: column;
  gap: var(--theme-spacing-md);
  flex: 0 1 260px;
  min-width: 220px;
  max-width: 320px;
}

.hotline-title[b-9mchodiprv] {
  font-weight: var(--theme-font-weight-semibold);
  color: var(--theme-text-primary);
  font-size: var(--theme-font-size-md);
}

.hotline-number[b-9mchodiprv] {
  font-size: var(--theme-font-size-md);
  color: var(--theme-text-secondary);
}

.call-btn[b-9mchodiprv] {
  width: fit-content;
}

/* What's New Section */
.whats-new-section[b-9mchodiprv] {
  background-color: var(--theme-bg-primary);
  border-radius: var(--theme-radius-lg);
  padding: var(--theme-spacing-xl);
  border: none;
  margin-bottom: var(--theme-spacing-xl);
}

.news-item[b-9mchodiprv] {
  margin-bottom: var(--theme-spacing-xl);
  padding: var(--theme-spacing-lg);
  /* border-bottom: 1px solid var(--theme-border-primary); */
  background-color: var(--theme-bg-tertiary);
}

.news-item:last-child[b-9mchodiprv] {
  margin-bottom: 0;
}

.news-header[b-9mchodiprv] {
  display: flex;
  align-items: flex-start;
  gap: var(--theme-spacing-md);
  margin-bottom: var(--theme-spacing-md);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .dashboard-container[b-9mchodiprv] {
    grid-template-columns: 1fr 300px;
  }
  
  .dashboard-middle[b-9mchodiprv] {
    display: none;
  }
  
  .hotline-card[b-9mchodiprv] {
    flex-basis: 240px;
  }
}

@media (max-width: 768px) {
  .dashboard-container[b-9mchodiprv] {
    grid-template-columns: 1fr;
    gap: var(--theme-spacing-lg);
  }
  
  .dashboard-middle[b-9mchodiprv] {
    display: flex;
  }

  .hotline-card[b-9mchodiprv] {
    flex: 1 1 100%;
    max-width: none;
    min-width: 0;
  }
  
}
/* /Pages/Home.razor.rz.scp.css */
.login-container[b-ds5ov5elia] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: var(--theme-bg-primary);
    font-family: var(--theme-font-family);
    transition: background var(--theme-transition-normal);
}

.login-card[b-ds5ov5elia] {
    background: var(--theme-bg-secondary);
    padding: var(--theme-spacing-2xl);
    border-radius: var(--theme-radius-xl);
    box-shadow: var(--theme-shadow-lg);
    width: 100%;
    max-width: 400px;
    margin: var(--theme-spacing-lg);
    border: 1px solid var(--theme-border-primary);
    transition: all var(--theme-transition-normal);
}

.login-header[b-ds5ov5elia] {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1[b-ds5ov5elia] {
    color: var(--theme-text-primary);
    font-size: var(--theme-font-size-3xl);
    font-weight: var(--theme-font-weight-bold);
    margin-bottom: var(--theme-spacing-sm);
}

.login-subtitle[b-ds5ov5elia] {
    color: var(--theme-text-secondary);
    font-size: var(--theme-font-size-md);
    margin: 0;
}

.login-form[b-ds5ov5elia] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-options[b-ds5ov5elia] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0;
}

.forgot-password[b-ds5ov5elia] {
    color: var(--theme-accent-blue);
    text-decoration: none;
    font-size: var(--theme-font-size-sm);
    transition: color var(--theme-transition-normal);
}

.forgot-password:hover[b-ds5ov5elia] {
    color: var(--theme-accent-blue-hover);
    text-decoration: underline;
}

.login-button[b-ds5ov5elia] {
    background: var(--theme-accent-blue);
    color: var(--theme-text-inverse);
    border: none;
    padding: var(--theme-spacing-md) var(--theme-spacing-xl);
    border-radius: var(--theme-radius-md);
    font-size: var(--theme-font-size-lg);
    font-weight: var(--theme-font-weight-medium);
    cursor: pointer;
    transition: all var(--theme-transition-normal);
    margin-top: var(--theme-spacing-sm);
}

.login-button:hover[b-ds5ov5elia] {
    background: var(--theme-accent-blue-hover);
    transform: translateY(-2px);
    box-shadow: var(--theme-shadow-md);
}

.login-button:active[b-ds5ov5elia] {
    transform: translateY(0);
}

.login-footer[b-ds5ov5elia] {
    text-align: center;
    margin-top: var(--theme-spacing-xl);
    padding-top: var(--theme-spacing-xl);
    border-top: 1px solid var(--theme-border-primary);
}

.login-footer p[b-ds5ov5elia] {
    color: var(--theme-text-secondary);
    font-size: var(--theme-font-size-sm);
    margin: 0;
}

.login-footer a[b-ds5ov5elia] {
    color: var(--theme-accent-blue);
    text-decoration: none;
    font-weight: var(--theme-font-weight-medium);
    transition: color var(--theme-transition-normal);
}

.login-footer a:hover[b-ds5ov5elia] {
    color: var(--theme-accent-blue-hover);
    text-decoration: underline;
}

.spinner[b-ds5ov5elia] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin-b-ds5ov5elia 1s linear infinite;
    margin-right: var(--theme-spacing-sm);
}

@keyframes spin-b-ds5ov5elia {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive design */
@media (max-width: 480px) {
    .login-card[b-ds5ov5elia] {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .login-header h1[b-ds5ov5elia] {
        font-size: 1.75rem;
    }
    
    .form-options[b-ds5ov5elia] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}
/* /Pages/News.razor.rz.scp.css */
.form-check-group[b-5nmeb997p7] {
    justify-content: flex-end;
}

.news-management-page .cc-action-cell[b-5nmeb997p7] {
    min-width: 150px;
}

@media (max-width: 900px) {
    .news-management-page .cc-action-cell[b-5nmeb997p7] {
        min-width: 140px;
    }
}
/* /Pages/Settings.razor.rz.scp.css */
/* ========================================
   SETTINGS PAGE STYLES
   ======================================= */

.settings-section[b-145339mpwu] {
    margin-bottom: var(--theme-spacing-2xl);
}

.settings-section h4[b-145339mpwu] {
    font-size: var(--theme-font-size-lg);
    font-weight: var(--theme-font-weight-semibold);
    color: var(--theme-text-primary);
    margin-bottom: var(--theme-spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Theme Controls */
.theme-controls[b-145339mpwu] {
    display: flex;
    align-items: center;
    gap: var(--theme-spacing-lg);
}

.theme-icon[b-145339mpwu] {
    font-size: var(--theme-font-size-xl);
}

/* Notification Options */
.notification-options[b-145339mpwu] {
    display: flex;
    flex-direction: column;
    gap: var(--theme-spacing-md);
}

/* Account Form */
.account-form[b-145339mpwu] {
    display: flex;
    flex-direction: column;
    gap: var(--theme-spacing-lg);
}

.account-state[b-145339mpwu] {
    color: var(--theme-text-secondary);
    font-size: var(--theme-font-size-sm);
}

.account-state-error[b-145339mpwu] {
    color: var(--theme-accent-red);
    font-weight: var(--theme-font-weight-medium);
}

/* System Information */
.system-info[b-145339mpwu] {
    display: flex;
    flex-direction: column;
    gap: var(--theme-spacing-md);
    font-family: 'Courier New', Consolas, monospace;
    font-size: var(--theme-font-size-sm);
}

.system-info-item[b-145339mpwu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--theme-spacing-sm) 0;
    border-bottom: 1px solid var(--theme-border-primary);
}

.system-info-item:last-child[b-145339mpwu] {
    border-bottom: none;
}

.system-info-label[b-145339mpwu] {
    color: var(--theme-text-secondary);
    font-weight: var(--theme-font-weight-medium);
}

.system-info-value[b-145339mpwu] {
    color: var(--theme-text-primary);
    font-weight: var(--theme-font-weight-semibold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .theme-controls[b-145339mpwu] {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--theme-spacing-md);
    }
    
    .system-info-item[b-145339mpwu] {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--theme-spacing-xs);
    }
}
/* /Pages/UserList.razor.rz.scp.css */
.user-list-page .cc-action-cell[b-l8o4syu68k] {
    min-width: 220px;
}

@media (max-width: 900px) {
    .user-list-page .cc-action-cell[b-l8o4syu68k] {
        min-width: 160px;
    }
}
