/* _content/Remotely_Server/Components/Account/Pages/Login.razor.rz.scp.css */
/* Modern Login Page - Professional White Card Design */
*[b-mz35cu386e] {
 margin: 0;
  padding: 0;
    box-sizing: border-box;
}

/* Login Page Container - Blue Gradient Background */
.login-page-container[b-mz35cu386e] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Animated background pattern */
.login-page-container[b-mz35cu386e]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float-b-mz35cu386e 20s ease-in-out infinite;
}

@keyframes float-b-mz35cu386e {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Modern White Card */
.login-card[b-mz35cu386e] {
background: #ffffff;
    border-radius: 24px;
    padding: 50px 45px;
    width: 100%;
    max-width: 480px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
   0 0 100px rgba(102, 126, 234, 0.2);
    animation: fadeInUp-b-mz35cu386e 0.6s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes fadeInUp-b-mz35cu386e {
    from {
        opacity: 0;
    transform: translateY(30px);
    }
    to {
        opacity: 1;
  transform: translateY(0);
    }
}

/* Login Header */
.login-header[b-mz35cu386e] {
    text-align: center;
    margin-bottom: 40px;
}

.login-title[b-mz35cu386e] {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle[b-mz35cu386e] {
 font-size: 15px;
    color: #718096;
    margin: 0;
    font-weight: 400;
}

/* Error Message */
.error-message[b-mz35cu386e] {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-left: 4px solid #ef4444;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 24px;
    color: #991b1b;
    font-size: 14px;
    animation: shake-b-mz35cu386e 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-message[b-mz35cu386e]::before {
    content: '⚠';
    font-size: 18px;
}

@keyframes shake-b-mz35cu386e {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* Form Group */
.form-group[b-mz35cu386e] {
    margin-bottom: 24px;
}

.form-label[b-mz35cu386e] {
    display: block;
 font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

/* Modern Rounded Input Fields */
.form-input[b-mz35cu386e] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
  border-radius: 12px;
    font-size: 15px;
    background: #f8fafc;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #2d3748;
}

.form-input[b-mz35cu386e]::placeholder {
    color: #a0aec0;
}

.form-input:focus[b-mz35cu386e] {
    outline: none;
    border-color: #667eea;
  background: #ffffff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-input:hover[b-mz35cu386e] {
    border-color: #cbd5e0;
}

/* Validation Error */
.validation-error[b-mz35cu386e] {
    display: block;
    color: #e53e3e;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}

/* Checkbox Group */
.checkbox-group[b-mz35cu386e] {
  margin-bottom: 28px;
}

.checkbox-label[b-mz35cu386e] {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 10px 0;
}

.checkbox-input[b-mz35cu386e] {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #667eea;
    border-radius: 4px;
}

.checkbox-text[b-mz35cu386e] {
    font-size: 14px;
    color: #4a5568;
    font-weight: 400;
}

/* Modern Sign In Button */
.btn-signin[b-mz35cu386e] {
    width: 100%;
  padding: 16px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.4);
}

.btn-signin:hover[b-mz35cu386e] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-signin:active[b-mz35cu386e] {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

.btn-signin:disabled[b-mz35cu386e] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Login Links */
.login-links[b-mz35cu386e] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.link[b-mz35cu386e] {
    color: #667eea;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.link:hover[b-mz35cu386e] {
    color: #5568d3;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 640px) {
    .login-card[b-mz35cu386e] {
     padding: 40px 30px;
        max-width: 100%;
      border-radius: 16px;
    }

    .login-title[b-mz35cu386e] {
  font-size: 28px;
    }

    .login-subtitle[b-mz35cu386e] {
        font-size: 14px;
    }

    .form-input[b-mz35cu386e] {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 10px;
    }

    .btn-signin[b-mz35cu386e] {
        padding: 14px 20px;
 font-size: 15px;
     border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .login-page-container[b-mz35cu386e] {
        padding: 16px;
    }

    .login-card[b-mz35cu386e] {
  padding: 35px 25px;
   border-radius: 12px;
    }

    .login-title[b-mz35cu386e] {
  font-size: 26px;
  }

    .form-group[b-mz35cu386e] {
        margin-bottom: 18px;
    }

    .form-label[b-mz35cu386e] {
        font-size: 13px;
margin-bottom: 6px;
    }

    .form-input[b-mz35cu386e] {
        padding: 11px 14px;
border-radius: 8px;
    }

    .checkbox-input[b-mz35cu386e] {
        width: 16px;
        height: 16px;
    }

    .checkbox-text[b-mz35cu386e] {
 font-size: 13px;
    }

  .login-links[b-mz35cu386e] {
      gap: 12px;
    }

    .link[b-mz35cu386e] {
        font-size: 13px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *[b-mz35cu386e],
  *[b-mz35cu386e]::before,
    *[b-mz35cu386e]::after {
      animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    }
}

.btn-signin:focus-visible[b-mz35cu386e],
.form-input:focus-visible[b-mz35cu386e],
.checkbox-input:focus-visible[b-mz35cu386e] {
  outline: 3px solid #667eea;
    outline-offset: 2px;
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    .form-input[b-mz35cu386e] {
     border-width: 3px;
    }
    
    .checkbox-input[b-mz35cu386e] {
        border-width: 3px;
  }
    
    .btn-signin[b-mz35cu386e] {
        border: 3px solid #ffffff;
    }
}

/* Loading State for Submit Button */
.btn-signin:disabled[b-mz35cu386e]::after {
    content: '';
    display: inline-block;
 width: 14px;
    height: 14px;
    margin-left: 10px;
  border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin-b-mz35cu386e 0.6s linear infinite;
}

@keyframes spin-b-mz35cu386e {
    to { transform: rotate(360deg); }
}

/* Focus styles for better accessibility */
.form-input:focus[b-mz35cu386e],
.checkbox-input:focus[b-mz35cu386e],
.btn-signin:focus[b-mz35cu386e] {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Hover effect for card */
.login-card:hover[b-mz35cu386e] {
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.35),
        0 0 120px rgba(102, 126, 234, 0.3);
}
/* _content/Remotely_Server/Components/Account/Pages/Register.razor.rz.scp.css */
/* Modern Register Page Styles (matches login) */
.login-page-container[b-4tq6ue6hz3] {
 min-height:100vh;
 width:100vw;
 display: flex;
 align-items: center;
 justify-content: center;
 background: var(--gray-50);
 padding:2rem0;
 box-sizing: border-box;
}

.login-card[b-4tq6ue6hz3] {
 width:100%;
 max-width:410px;
 margin:0 auto;
 background: var(--white);
 border-radius:18px;
 box-shadow:08px32px rgba(37,99,235,0.10),01.5px4px rgba(0,0,0,0.04);
 padding:2.5rem2rem2rem2rem;
 display: flex;
 flex-direction: column;
 gap:1.5rem;
 position: relative;
 z-index:1;
}

.login-card-header[b-4tq6ue6hz3] {
 display: flex;
 align-items: center;
 gap:1.25rem;
 margin-bottom:0.5rem;
}

.login-icon[b-4tq6ue6hz3] {
 font-size:2.5rem;
 color: var(--primary-blue);
 opacity:0.9;
}

.login-title[b-4tq6ue6hz3] {
 font-size:2rem;
 font-weight:800;
 color: var(--text-primary);
 margin:0;
 font-family: 'Inter', sans-serif;
}

.login-subtitle[b-4tq6ue6hz3] {
 font-size:1.1rem;
 color: var(--text-secondary);
 font-family: 'Inter', sans-serif;
}

.form-group-modern[b-4tq6ue6hz3] {
 margin-bottom:1.25rem;
}

.form-label-modern[b-4tq6ue6hz3] {
 font-weight:600;
 color: var(--text-primary);
 margin-bottom:0.5rem;
 font-size:1rem;
 font-family: 'Inter', sans-serif;
}

.input-with-icon[b-4tq6ue6hz3] {
 position: relative;
}

.input-with-icon .oi[b-4tq6ue6hz3] {
 position: absolute;
 left:1rem;
 top:50%;
 transform: translateY(-50%);
 color: var(--primary-blue);
 font-size:1.1rem;
 opacity:0.85;
}

.input-with-icon .form-control-modern[b-4tq6ue6hz3] {
 padding-left:2.5rem;
}

.form-control-modern[b-4tq6ue6hz3] {
 width:100%;
 padding:0.85rem1.1rem;
 border:2px solid var(--gray-300);
 border-radius:10px;
 font-size:1rem;
 font-family: 'Inter', sans-serif;
 background: var(--gray-50);
 transition: border-color0.2s;
}

.form-control-modern:focus[b-4tq6ue6hz3] {
 border-color: var(--primary-blue);
 outline: none;
 box-shadow:0003px rgba(37,99,235,0.10);
}

.btn-modern[b-4tq6ue6hz3] {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap:0.5rem;
 padding:0.85rem1.5rem;
 border-radius:10px;
 font-weight:700;
 font-size:1.1rem;
 transition: all0.3s ease;
 border: none;
 cursor: pointer;
 font-family: 'Inter', sans-serif;
}

.btn-modern-primary[b-4tq6ue6hz3] {
 background: linear-gradient(135deg, var(--primary-blue)0%, var(--primary-blue-light)100%);
 color: var(--white);
 box-shadow:02px8px rgba(37,99,235,0.10);
}

.btn-modern-primary:hover[b-4tq6ue6hz3] {
 background: var(--primary-blue-hover);
 color: var(--white);
 transform: translateY(-2px);
}

.text-danger[b-4tq6ue6hz3] {
 color: #e11d48 !important;
 font-size:0.98rem;
}

@media (max-width:600px) {
 .login-card[b-4tq6ue6hz3] {
 padding:1.25rem0.5rem1.25rem0.5rem;
 }
 .login-title[b-4tq6ue6hz3] {
 font-size:1.5rem;
 }
 .login-page-container[b-4tq6ue6hz3] {
 padding:1rem0;
 }
}
/* _content/Remotely_Server/Components/AlertsFrame.razor.rz.scp.css */
#alertsButton[b-wmpntl335p] {
    position: absolute;
    top: 75px;
    right: 5px;
    z-index: 4;
    transition: .5s ease left;
    user-select: none;
}


#alertsFrame[b-wmpntl335p] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateX(100%);
    width: 350px;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: center;
    opacity: 0;
    z-index: 4;
    transition: .25s ease all;
}

    #alertsFrame.open[b-wmpntl335p] {
        opacity: 1;
        transition: .25s ease all;
        pointer-events: unset;
        transform: translateX(0);
    }


@media (min-width: 641px) {
    #alertsButton[b-wmpntl335p] {
        top: 5px;
    }

}
/* _content/Remotely_Server/Components/AuthorizedIndex.razor.rz.scp.css */
.dashboard-container[b-2ha3jcfgnn] {
    max-width: 1400px;
    margin: 0 auto;
  padding: 2.5rem 1rem 2rem 1rem;
}

.dashboard-header[b-2ha3jcfgnn] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.10), 0 1.5px 4px rgba(0, 0, 0, 0.04);
    padding: 2.5rem 2rem 2rem 2rem;
}

.dashboard-header-content[b-2ha3jcfgnn] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.dashboard-header-icon[b-2ha3jcfgnn] {
    font-size: 2.5rem;
    color: var(--primary-blue);
    opacity: 0.9;
}

.dashboard-title[b-2ha3jcfgnn] {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.dashboard-subtitle[b-2ha3jcfgnn] {
  font-size: 1.15rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

.dashboard-motd[b-2ha3jcfgnn] {
    margin-top: 1rem;
}

/* Statistics Cards */
.stats-grid[b-2ha3jcfgnn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card[b-2ha3jcfgnn] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 1.5px 4px rgba(0, 0, 0, 0.04);
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.stat-card:hover[b-2ha3jcfgnn] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.stat-icon-wrapper[b-2ha3jcfgnn] {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.stat-primary[b-2ha3jcfgnn] {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
    color: #2563eb;
}

.stat-success[b-2ha3jcfgnn] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #10b981;
}

.stat-warning[b-2ha3jcfgnn] {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.15) 100%);
    color: #f59e0b;
}

.stat-info[b-2ha3jcfgnn] {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.15) 100%);
    color: #8b5cf6;
}

.stat-content[b-2ha3jcfgnn] {
    flex: 1;
}

.stat-label[b-2ha3jcfgnn] {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-value[b-2ha3jcfgnn] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-change[b-2ha3jcfgnn] {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
}

.stat-change.positive[b-2ha3jcfgnn] {
color: #10b981;
}

.stat-change.negative[b-2ha3jcfgnn] {
    color: #ef4444;
}

.stat-change.neutral[b-2ha3jcfgnn] {
    color: var(--text-secondary);
}

/* Charts Grid */
.charts-grid[b-2ha3jcfgnn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.chart-card[b-2ha3jcfgnn] {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 1.5px 4px rgba(0, 0, 0, 0.04);
    padding: 1.75rem;
}

.chart-header[b-2ha3jcfgnn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-title[b-2ha3jcfgnn] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chart-filter[b-2ha3jcfgnn] {
padding: 0.5rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.875rem;
    background: var(--white);
    color: var(--text-primary);
    cursor: pointer;
  transition: all 0.3s ease;
}

.chart-filter:focus[b-2ha3jcfgnn] {
 outline: none;
    border-color: var(--primary-blue);
}

.chart-content[b-2ha3jcfgnn] {
    position: relative;
    height: 300px;
}

.chart-content canvas[b-2ha3jcfgnn] {
    max-height: 300px;
}

.chart-legend[b-2ha3jcfgnn] {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
padding-top: 1.5rem;
 border-top: 1px solid var(--gray-200);
}

.legend-item[b-2ha3jcfgnn] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.legend-dot[b-2ha3jcfgnn] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-online[b-2ha3jcfgnn] {
background: #10b981;
}

.legend-offline[b-2ha3jcfgnn] {
    background: #ef4444;
}

/* Dashboard Main Grid */
.dashboard-main-grid[b-2ha3jcfgnn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
    margin-bottom: 2.5rem;
}

.dashboard-card[b-2ha3jcfgnn] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    border-radius: 16px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 1.5px 4px rgba(0, 0, 0, 0.04);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-height: 260px;
}

.dashboard-card-icon[b-2ha3jcfgnn] {
    font-size: 2rem;
    color: var(--primary-blue);
    opacity: 0.85;
}

.dashboard-card-title[b-2ha3jcfgnn] {
  font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
 font-family: 'Inter', sans-serif;
}

.dashboard-card-desc[b-2ha3jcfgnn] {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.dashboard-card-btn[b-2ha3jcfgnn] {
    margin-top: auto;
}

.dashboard-widgets[b-2ha3jcfgnn] {
    display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.dashboard-widget-card[b-2ha3jcfgnn] {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 1.5px 4px rgba(0, 0, 0, 0.04);
    padding: 1.5rem 1.25rem;
}

/* Recent Sessions Section */
.recent-sessions-section[b-2ha3jcfgnn] {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 1.5px 4px rgba(0, 0, 0, 0.04);
    padding: 1.75rem;
}

.session-card-mini[b-2ha3jcfgnn] {
    transition: all 0.3s ease;
}

.session-card-mini:hover[b-2ha3jcfgnn] {
    background: #eef2ff !important;
    border-color: #667eea !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

/* Responsive Design */
@media (max-width: 900px) {
    .dashboard-header[b-2ha3jcfgnn] {
        padding: 1.5rem 0.75rem 1.25rem 0.75rem;
    }
    
    .stats-grid[b-2ha3jcfgnn] {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .charts-grid[b-2ha3jcfgnn] {
        grid-template-columns: 1fr;
    }
    
    .dashboard-main-grid[b-2ha3jcfgnn], .dashboard-widgets[b-2ha3jcfgnn] {
 grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .dashboard-header[b-2ha3jcfgnn] {
        padding: 1rem 0.25rem 1rem 0.25rem;
    }
    
    .dashboard-title[b-2ha3jcfgnn] {
        font-size: 1.5rem;
    }
    
    .stat-card[b-2ha3jcfgnn] {
  padding: 1.25rem;
    }
    
    .stat-icon-wrapper[b-2ha3jcfgnn] {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .stat-value[b-2ha3jcfgnn] {
        font-size: 1.5rem;
    }
    
    .dashboard-card[b-2ha3jcfgnn] {
  padding: 1.25rem 0.5rem 1rem 0.5rem;
    }
    
    .chart-content[b-2ha3jcfgnn] {
  height: 250px;
    }
}
/* _content/Remotely_Server/Components/ColorPicker.razor.rz.scp.css */
.color-sample[b-ebj57ptbqm] {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}
/* _content/Remotely_Server/Components/Devices/ChatCard.razor.rz.scp.css */
.chat-card[b-bvi6fonci1] {
    display: grid;
    grid-template-rows: auto auto auto;
}

.chat-header[b-bvi6fonci1] {
    display: grid;
    grid-template-columns: 1fr auto;
    user-select: none;
    cursor: pointer;
    padding: 5px 10px;
}

.chat-messages-window[b-bvi6fonci1] {
    overflow-y: auto;
    height: 0;
    opacity: 0;
    padding: 0;
    transition: .25s ease all;
}

.chat-card.expanded .chat-messages-window[b-bvi6fonci1] {
    height: 20em;
    opacity: 1;
    padding: 5px 10px;
    transition: .25s ease all;
}

.chat-input[b-bvi6fonci1] {
    width: 100%;
    height: 0;
    opacity: 0;
    resize: none;
    border: 1px solid gray;
}

.chat-card.expanded .chat-input[b-bvi6fonci1] {
    height: 2.5em;
    opacity: 1;
    transition: .25s ease all;
}

.chat-history-item-system[b-bvi6fonci1] {

}

.chat-history-item-device[b-bvi6fonci1] {

}

.chat-history-item-self[b-bvi6fonci1] {
    text-align: right;

}

.chat-bubble[b-bvi6fonci1] {
    position: relative;
    width: 80%;
    padding: .5em 1em .5em 1em;
    border-radius: 5px;
}
/* _content/Remotely_Server/Components/Devices/ChatFrame.razor.rz.scp.css */
.chat-frame[b-yc1vo2f9rd] {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 25em;
    max-width: 90%;
    max-height: 100vh;
    overflow-y: auto;
    z-index: 3;
}
/* _content/Remotely_Server/Components/Devices/DeviceCard.razor.rz.scp.css */
.device-card[b-nmpx2i1h91] {
    transition: box-shadow .25s;
    cursor: pointer;
    display: inline-block;
    width: 15rem;
    transition: .25s ease all;
    max-width: 100%;
}

    .device-card.expanded[b-nmpx2i1h91] {
        cursor: unset;
        display: block;
        width: 35rem;
        height: auto;
        transition: .25s ease all;
    }

        .device-card.expanded .card-body[b-nmpx2i1h91] {
            overflow-y: auto;
            height: 30rem;
            transition: .25s ease all;
        }

        .device-card.expanded .card-header[b-nmpx2i1h91] {
            cursor: pointer;
        }

    .device-card:hover[b-nmpx2i1h91] {
        transition: all .25s;
    }

    .device-card.light:hover[b-nmpx2i1h91] {
        box-shadow: 0px 0px 10px 0px rgb(25,25,25);
    }

    .device-card.dark:hover[b-nmpx2i1h91] {
        box-shadow: 0px 0px 10px 0px rgb(150 150 150)
    }

    .device-card .card-body[b-nmpx2i1h91] {
        font-size: 0.9rem;
        overflow: hidden;
        white-space: nowrap;
        transition: .25s ease all;
    }

        .device-card .card-body > div[b-nmpx2i1h91] {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-column-gap: 2rem;
            grid-row-gap: .25rem;
            transition: .25s ease all;
        }

    .device-card .expanded-visible[b-nmpx2i1h91] {
        display: none;
    }

    .device-card.expanded .expanded-visible[b-nmpx2i1h91] {
        display: unset;
    }

    .device-card.expanded .card-body > div[b-nmpx2i1h91] {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        transition: .25s ease all;
    }

    .device-card.expanded .card-body[b-nmpx2i1h91] {
        overflow-y: auto;
        grid-template-columns: 1fr 1fr;
        transition: .25s ease all;
    }

    .device-card .card-header[b-nmpx2i1h91] {
        display: grid;
        grid-template-columns: auto 1fr auto;
        white-space: nowrap;
        align-content: start;
        user-select: none;
    }


    .device-card input[readonly][b-nmpx2i1h91] {
        cursor: default;
    }


@media (max-width: 641px) {
    .device-card[b-nmpx2i1h91] {
        width: calc(50% - 1rem);
    }
}
/* _content/Remotely_Server/Components/Devices/DevicesFrame.razor.rz.scp.css */
#deviceControlsWrapper[b-unathrbj2p] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 10px;
    margin-bottom: 5px;
    margin-right: 5px;
    padding-top: 3px;
}

    #deviceControlsWrapper > :last-child[b-unathrbj2p] {
        text-align: right;
    }

#deviceListDiv[b-unathrbj2p]{
    overflow-y: auto;
    overflow-x: hidden;
}
/* _content/Remotely_Server/Components/Devices/Terminal.razor.rz.scp.css */

.terminal-frame[b-xzibiznfo1] {
    position: fixed;
    bottom: 0;
    left: 260px;
    right: 10px;
    z-index: 2;
    pointer-events: none;
}

    .terminal-frame.open[b-xzibiznfo1]{
        z-index: 4;
    }

    .terminal-header[b-xzibiznfo1] {
        pointer-events: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

.terminal-header .terminal-button[b-xzibiznfo1] {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    pointer-events: all;
}

.terminal-body[b-xzibiznfo1] {
    display: grid;
    grid-template-rows: 1fr auto;
    height: 0;
    overflow: hidden;
    opacity: 0;
    border-radius: 5px;
    transition: .25s ease all;
    pointer-events: all;
}

.terminal-frame.open .terminal-body[b-xzibiznfo1] {
        height: 25rem;
        max-height: 80vh;
        overflow: auto;
        opacity: 1;
        transition: .25s ease all;
    }

.terminal-window[b-xzibiznfo1] {
    font-family: Consolas, 'Lucida Console', Courier New, Courier, monospace;
    overflow-wrap: break-word;
    overflow-y: auto;
    white-space: pre;
}

.terminal-line[b-xzibiznfo1] {
    min-height: 1.3em;
}

.terminal-input-area[b-xzibiznfo1]{
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-column-gap: .5em;
}

@media (max-width: 641px) {
    .terminal-frame[b-xzibiznfo1] {
        left: 10px;
    }
}
/* _content/Remotely_Server/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-t34zn3ju9d] {
    position: relative;
    display: flex;
  flex-direction: column;
    min-height: 100vh;
}

.main[b-t34zn3ju9d] {
 flex: 1;
    background-color: var(--gray-50);
  transition: margin-left var(--transition-speed) var(--transition-ease);
position: relative;
}

.main.expanded[b-t34zn3ju9d] {
    margin-left: 0;
}

.sidebar[b-t34zn3ju9d] {
  background: var(--white);
 border-right: 1px solid var(--gray-200);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
 z-index: 1000;
    transition: all var(--transition-speed) var(--transition-ease);
}

.top-row[b-t34zn3ju9d] {
  background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
 justify-content: flex-end;
    height: 4rem;
    display: flex;
  align-items: center;
    padding: 0 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.top-row[b-t34zn3ju9d]  a, .top-row .btn-link[b-t34zn3ju9d] {
    white-space: nowrap;
    margin-left: 1.5rem;
color: var(--text-primary);
  font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.top-row a:first-child[b-t34zn3ju9d] {
  overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-t34zn3ju9d] {
     display: none;
    }

    .top-row.auth[b-t34zn3ju9d] {
    justify-content: space-between;
padding: 0 1rem;
  }

    .top-row a[b-t34zn3ju9d], .top-row .btn-link[b-t34zn3ju9d] {
margin-left: 0;
    }

  /* Mobile sidebar - full width overlay */
    .sidebar[b-t34zn3ju9d] {
        position: fixed;
 left: 0;
     top: 0;
   height: 100vh;
width: var(--sidebar-width);
z-index: 2000;
        transform: translateX(0);
  }

 .sidebar.mini[b-t34zn3ju9d] {
   transform: translateX(-100%);
      pointer-events: none;
  }

    .main[b-t34zn3ju9d] {
    margin-left: 0 !important;
    }

    /* Mobile backdrop */
  .sidebar[b-t34zn3ju9d]::before {
   content: '';
 position: fixed;
      top: 0;
    left: 0;
   right: 0;
  bottom: 0;
   background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity var(--transition-speed);
        pointer-events: none;
  z-index: -1;
    }

    .sidebar:not(.mini)[b-t34zn3ju9d]::before {
    opacity: 1;
 }
}

@media (min-width: 641px) {
    .page[b-t34zn3ju9d] {
    flex-direction: row;
    }

  .sidebar[b-t34zn3ju9d] {
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
      height: 100vh;
 position: sticky;
 overflow-y: auto;
  overflow-x: hidden;
top: 0;
    }

    /* Custom Scrollbar for Sidebar */
    .sidebar[b-t34zn3ju9d]::-webkit-scrollbar {
width: 6px;
  }

    .sidebar[b-t34zn3ju9d]::-webkit-scrollbar-track {
   background: var(--gray-100);
    }

    .sidebar[b-t34zn3ju9d]::-webkit-scrollbar-thumb {
 background: var(--gray-300);
        border-radius: 3px;
    }

    .sidebar[b-t34zn3ju9d]::-webkit-scrollbar-thumb:hover {
   background: var(--gray-400);
    }

    .top-row[b-t34zn3ju9d] {
  position: sticky;
 top: 0;
    z-index: 100;
    }

 .main > div[b-t34zn3ju9d] {
    padding-left: 2.5rem !important;
     padding-right: 2.5rem !important;
    max-width: 1600px;
    }

 /* Desktop mini sidebar - Icon only mode */
    .sidebar.mini[b-t34zn3ju9d] {
      width: var(--sidebar-mini-width);
   min-width: var(--sidebar-mini-width);
    }
    
 /* Hide text elements when collapsed */
    .sidebar.mini .logo-title[b-t34zn3ju9d],
    .sidebar.mini .nav-item-text[b-t34zn3ju9d],
  .sidebar.mini .section-label[b-t34zn3ju9d] {
        display: none !important;
        opacity: 0;
     width: 0;
      overflow: hidden;
    }
    
    /* Center sidebar brand (just icon) and keep hamburger visible */
    .sidebar.mini .sidebar-brand[b-t34zn3ju9d] {
  flex: 1;
        justify-content: center;
    }
    
  /* Adjust sidebar header layout in collapsed mode */
    .sidebar.mini .sidebar-header[b-t34zn3ju9d] {
        justify-content: space-between;
      padding: 1.25rem 0.5rem;
    }
    
    /* Center hamburger button in collapsed mode */
    .sidebar.mini .hamburger-btn[b-t34zn3ju9d] {
        flex-shrink: 0;
    }
    
    /* Center all navigation links */
    .sidebar.mini .nav-item[b-t34zn3ju9d]  a {
      justify-content: center;
        padding: 0.75rem 0.5rem;
    }
    
    /* Remove icon margins in mini mode */
    .sidebar.mini .oi[b-t34zn3ju9d] {
        margin-right: 0 !important;
     margin-left: 0 !important;
    }
    
    /* Center account buttons */
    .sidebar.mini .nav .btn-link[b-t34zn3ju9d] {
        justify-content: center;
        padding: 0.75rem 0.5rem;
 text-align: center;
    }
    
  /* Center form buttons */
    .sidebar.mini form button[type="submit"][b-t34zn3ju9d] {
        justify-content: center;
    padding: 0.75rem 0.5rem;
  }
    
    /* Adjust nav items spacing in mini mode */
 .sidebar.mini .nav-item[b-t34zn3ju9d] {
  margin: 0.25rem 0.5rem;
  }
    
  /* Remove active indicator line in mini mode */
    .sidebar.mini .nav-item[b-t34zn3ju9d]  a::before {
   display: none;
    }
    
    /* Better hover effect in mini mode */
  .sidebar.mini .nav-item[b-t34zn3ju9d]  a:hover {
        transform: scale(1.05);
        background: var(--gray-100);
    }
  
    /* Keep active state visible in mini mode */
    .sidebar.mini .nav-item[b-t34zn3ju9d]  a.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
        color: var(--primary-blue);
        border-radius: 12px;
    }
}
/* _content/Remotely_Server/Components/Layout/NavMenu.razor.rz.scp.css */
/* Sidebar Header with Hamburger */
.sidebar-header[b-wv3ofupuxg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--gray-200);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
    transition: all var(--transition-speed) var(--transition-ease);
}

.sidebar-brand[b-wv3ofupuxg] {
 display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
font-size: 1.25rem;
    color: var(--primary-blue);
    transition: all var(--transition-speed) var(--transition-ease);
}

.logo-icon[b-wv3ofupuxg] {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.logo-title[b-wv3ofupuxg] {
    transition: all var(--transition-speed) var(--transition-ease);
    white-space: nowrap;
}

.hamburger-btn[b-wv3ofupuxg] {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all var(--transition-speed) var(--transition-ease);
    display: flex;
align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hamburger-btn:hover[b-wv3ofupuxg] {
    background: var(--gray-100);
    color: var(--primary-blue);
}

.hamburger-btn .oi[b-wv3ofupuxg] {
    font-size: 1.25rem;
    margin: 0;
}

/* Navigation Icons */
.oi[b-wv3ofupuxg] {
  width: 1.25rem;
    height: 1.25rem;
  font-size: 1.1rem;
    vertical-align: middle;
    margin-right: 0.75rem;
    transition: all var(--transition-speed) var(--transition-ease);
}

/* Navigation Items */
.nav-item[b-wv3ofupuxg] {
    font-size: 0.9375rem;
    padding: 0.25rem 0;
    margin: 0.125rem 0.75rem;
  font-family: 'Inter', sans-serif;
}

.nav-item:first-of-type[b-wv3ofupuxg] {
    padding-top: 0.5rem;
}

.nav-item:last-of-type[b-wv3ofupuxg] {
    padding-bottom: 1rem;
}

.nav-item[b-wv3ofupuxg]  a {
    color: var(--text-secondary);
    border-radius: 10px;
    height: 3rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    font-weight: 500;
    transition: all var(--transition-speed) var(--transition-ease);
 position: relative;
    overflow: hidden;
}

.nav-item-text[b-wv3ofupuxg] {
  transition: all var(--transition-speed) var(--transition-ease);
}

.nav-item[b-wv3ofupuxg]  a::before {
    content: '';
    position: absolute;
  left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-blue);
    transform: scaleY(0);
transition: transform var(--transition-speed);
}

.nav-item[b-wv3ofupuxg]  a.active {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    color: var(--primary-blue);
    font-weight: 600;
}

.nav-item[b-wv3ofupuxg]  a.active::before {
    transform: scaleY(1);
}

.nav-item[b-wv3ofupuxg]  a.active .oi {
    color: var(--primary-blue);
    transform: scale(1.1);
}

.nav-item[b-wv3ofupuxg]  a:hover {
    background: var(--gray-100);
    color: var(--text-primary);
    transform: translateX(4px);
}

.nav-item[b-wv3ofupuxg]  a:hover .oi {
    transform: scale(1.05);
    color: var(--primary-blue);
}

/* Section Labels */
.section-label[b-wv3ofupuxg] {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 0.75rem;
font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
  font-family: 'Inter', sans-serif;
transition: all var(--transition-speed) var(--transition-ease);
}

/* Account Buttons */
.nav .btn-link[b-wv3ofupuxg] {
    color: var(--text-secondary);
 text-decoration: none;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    transition: all var(--transition-speed);
    font-weight: 500;
display: inline-block;
    width: 100%;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.nav .btn-link:hover[b-wv3ofupuxg] {
 background: var(--gray-100);
    color: var(--text-primary);
}

/* Form Styling */
form[b-wv3ofupuxg] {
    width: 100%;
}

form button[type="submit"][b-wv3ofupuxg] {
  width: 100%;
    text-align: left;
    background: none;
    border: none;
 color: var(--text-secondary);
    padding: 0.625rem 1rem;
  border-radius: 8px;
 transition: all var(--transition-speed);
    font-weight: 500;
 cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
}

form button[type="submit"]:hover[b-wv3ofupuxg] {
    background: var(--gray-100);
    color: var(--text-primary);
}

form button[type="submit"] .oi[b-wv3ofupuxg] {
 margin-right: 0.75rem;
}

/* Mobile Responsiveness */
@media (max-width: 640.98px) {
  .navbar-toggler[b-wv3ofupuxg] {
      display: block;
    }

    .collapse[b-wv3ofupuxg] {
 background: var(--white);
  border-top: 1px solid var(--gray-200);
    }

    .nav-item[b-wv3ofupuxg]  a:hover {
   transform: translateX(0);
 }
}

@media (min-width: 641px) {
    .navbar-toggler[b-wv3ofupuxg] {
  display: none;
  }

    .collapse[b-wv3ofupuxg] {
        display: block !important;
}
}

/* Scrollbar Styling */
.nav[b-wv3ofupuxg]::-webkit-scrollbar {
width: 6px;
}

.nav[b-wv3ofupuxg]::-webkit-scrollbar-track {
    background: var(--gray-100);
}

.nav[b-wv3ofupuxg]::-webkit-scrollbar-thumb {
  background: var(--gray-300);
    border-radius: 3px;
}

.nav[b-wv3ofupuxg]::-webkit-scrollbar-thumb:hover {
 background: var(--gray-400);
}
/* _content/Remotely_Server/Components/LoadingSignal.razor.rz.scp.css */
.signal-background[b-3f88qoj6mr] {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
}

.signal-wrapper[b-3f88qoj6mr] {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.signal[b-3f88qoj6mr] {
    display: inline-block;
    border-width: 8px;
    border-style: solid;
    margin-top: 10px;
    border-radius: 100%;
    height: 50px;
    width: 50px;
    opacity: 0;
    transform-origin: center;
    animation: pulsate-b-3f88qoj6mr .85s ease-out;
    animation-iteration-count: infinite;
}

    .signal.signal-dark[b-3f88qoj6mr] {
        border-color: whitesmoke;
    }
    .signal.signal-light[b-3f88qoj6mr] {
        border-color: #333;
    }

@keyframes pulsate-b-3f88qoj6mr {
    0% {
        transform: scale(.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
/* _content/Remotely_Server/Components/ModalHarness.razor.rz.scp.css */
/* Modal Base */
.modal[b-hmpxvkv36o] {
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    display: none;
}

.modal.show[b-hmpxvkv36o] {
    display: block !important;
}

/* Modal Backdrop */
.modal-backdrop[b-hmpxvkv36o] {
    position: fixed;
    top: 0;
 left: 0;
    z-index: 1040;
    width: 100vw;
 height: 100vh;
 background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    animation: fadeIn-b-hmpxvkv36o 0.15s ease-out;
}

/* Modern Modal Dialog */
.modal-dialog[b-hmpxvkv36o] {
    position: relative;
    width: auto;
    margin: 1.75rem auto;
    max-width: 600px;
    pointer-events: auto;
    z-index: 1060;
}

.modal-dialog-centered[b-hmpxvkv36o] {
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
}

.modal-dialog-scrollable[b-hmpxvkv36o] {
    height: calc(100% - 3.5rem);
}

.modal-dialog-scrollable .modal-content[b-hmpxvkv36o] {
    max-height: 100%;
 overflow: hidden;
}

.modal-dialog-scrollable .modal-body[b-hmpxvkv36o] {
    overflow-y: auto;
}

/* Modern Modal Content */
.modal-content[b-hmpxvkv36o] {
    position: relative;
    display: flex;
 flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background: white;
    background-clip: padding-box;
    border: none;
    border-radius: 16px;
    outline: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1060;
    animation: slideIn-b-hmpxvkv36o 0.3s ease-out;
}

/* Modern Modal Header */
.modal-header[b-hmpxvkv36o] {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.modal-title[b-hmpxvkv36o] {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

/* Modern Close Button */
.btn-close[b-hmpxvkv36o] {
 width: 32px;
    height: 32px;
    padding: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.btn-close:hover[b-hmpxvkv36o] {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.btn-close[b-hmpxvkv36o]::before {
    content: "�";
    font-size: 28px;
    line-height: 1;
}

/* Modern Modal Body */
.modal-body[b-hmpxvkv36o] {
    position: relative;
    flex: 1 1 auto;
    padding: 30px;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
}

.modal-body[b-hmpxvkv36o]::-webkit-scrollbar {
    width: 8px;
}

.modal-body[b-hmpxvkv36o]::-webkit-scrollbar-track {
    background: #f1f5f9;
  border-radius: 4px;
}

.modal-body[b-hmpxvkv36o]::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}

.modal-body[b-hmpxvkv36o]::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* Modern Modal Footer */
.modal-footer[b-hmpxvkv36o] {
    display: flex;
 flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 30px;
    background: #f8fafc;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    gap: 12px;
}

/* Modern Buttons */
.btn-secondary[b-hmpxvkv36o] {
  padding: 10px 24px;
    background: #e2e8f0;
    color: #2d3748;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
 gap: 8px;
}

.btn-secondary:hover[b-hmpxvkv36o] {
    background: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn-b-hmpxvkv36o {
    from {
        opacity: 0;
    }
to {
        opacity: 1;
    }
}

@keyframes slideIn-b-hmpxvkv36o {
    from {
      opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
     transform: scale(1) translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .modal-dialog[b-hmpxvkv36o] {
        margin: 0.5rem;
      max-width: calc(100% - 1rem);
    }

    .modal-header[b-hmpxvkv36o] {
        padding: 16px 20px;
    }

    .modal-title[b-hmpxvkv36o] {
        font-size: 18px;
    }

    .modal-body[b-hmpxvkv36o] {
        padding: 20px;
        max-height: calc(100vh - 200px);
    }

    .modal-footer[b-hmpxvkv36o] {
        padding: 16px 20px;
  }
}
/* _content/Remotely_Server/Components/Pages/ApplicationUpdate.razor.rz.scp.css */
/* Application Update Page - Modern Design */
.application-update-page[b-5tx67ciy8a] {
    padding: 30px;
    background: #f5f7fa;
    min-height: calc(100vh - 80px);
}

/* Page Header */
.page-header[b-5tx67ciy8a] {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.page-header-content h3[b-5tx67ciy8a] {
    margin: 0 0 5px 0;
    color: #2d3748;
    font-size: 28px;
    font-weight: 700;
}

.page-header-content p[b-5tx67ciy8a] {
    margin: 0;
    color: #718096;
    font-size: 14px;
}

/* Modern Alert */
.alert-modern[b-5tx67ciy8a] {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
  align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    animation: slideIn-b-5tx67ciy8a 0.3s ease-out;
}

@keyframes slideIn-b-5tx67ciy8a {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
  opacity: 1;
      transform: translateY(0);
    }
}

.alert-info[b-5tx67ciy8a] {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

.alert-success[b-5tx67ciy8a] {
    background: #d1fae5;
 color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-warning[b-5tx67ciy8a] {
    background: #fef3c7;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.alert-danger[b-5tx67ciy8a] {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.alert-modern .oi[b-5tx67ciy8a] {
  font-size: 20px;
}

/* Update Card */
.update-card[b-5tx67ciy8a] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.update-card:hover[b-5tx67ciy8a] {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Card Header */
.card-header-modern[b-5tx67ciy8a] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: white;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header-modern .oi[b-5tx67ciy8a] {
    font-size: 24px;
}

.card-header-modern h4[b-5tx67ciy8a] {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

/* Card Body */
.card-body-modern[b-5tx67ciy8a] {
    padding: 30px;
}

/* Form Row */
.form-row[b-5tx67ciy8a] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Form Group */
.form-group-modern[b-5tx67ciy8a] {
    margin-bottom: 24px;
}

/* Form Label */
.form-label-modern[b-5tx67ciy8a] {
    display: flex;
    align-items: center;
    gap: 8px;
 font-size: 14px;
 font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.form-label-modern .oi[b-5tx67ciy8a] {
    color: #667eea;
    font-size: 16px;
}

/* Form Input */
.application-update-page .form-input-modern[b-5tx67ciy8a],
.application-update-page input.form-input-modern[b-5tx67ciy8a],
input.form-input-modern[b-5tx67ciy8a] {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    background: #f8fafc !important;
    transition: all 0.3s ease !important;
  font-family: inherit !important;
    color: #2d3748 !important;
  box-sizing: border-box !important;
}

.application-update-page .form-input-modern[b-5tx67ciy8a]::placeholder,
.application-update-page input.form-input-modern[b-5tx67ciy8a]::placeholder {
    color: #a0aec0 !important;
}

.application-update-page .form-input-modern:focus[b-5tx67ciy8a],
.application-update-page input.form-input-modern:focus[b-5tx67ciy8a] {
    outline: none !important;
    border-color: #667eea !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
}

.application-update-page .form-input-modern:hover[b-5tx67ciy8a],
.application-update-page input.form-input-modern:hover[b-5tx67ciy8a] {
    border-color: #cbd5e0 !important;
}


/* Textarea - HIGHER SPECIFICITY */
.application-update-page .form-textarea-modern[b-5tx67ciy8a],
.application-update-page textarea.form-textarea-modern[b-5tx67ciy8a],
textarea.form-textarea-modern[b-5tx67ciy8a] {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    background: #f8fafc !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
    color: #2d3748 !important;
    resize: vertical !important;
    min-height: 120px !important;
    box-sizing: border-box !important;
}

.application-update-page .form-textarea-modern[b-5tx67ciy8a]::placeholder,
.application-update-page textarea.form-textarea-modern[b-5tx67ciy8a]::placeholder {
    color: #a0aec0 !important;
}

.application-update-page .form-textarea-modern:focus[b-5tx67ciy8a],
.application-update-page textarea.form-textarea-modern:focus[b-5tx67ciy8a] {
    outline: none !important;
    border-color: #667eea !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
}

.application-update-page .form-textarea-modern:hover[b-5tx67ciy8a],
.application-update-page textarea.form-textarea-modern:hover[b-5tx67ciy8a] {
    border-color: #cbd5e0 !important;
}

/* File Upload */
.file-upload-wrapper[b-5tx67ciy8a] {
    width: 100%;
}

.file-input-modern[b-5tx67ciy8a] {
    display: none;
}

.file-upload-display[b-5tx67ciy8a] {
    width: 100%;
    min-height: 120px;
    border: 2px dashed #cbd5e0;
    border-radius: 10px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-display:hover[b-5tx67ciy8a] {
border-color: #667eea;
    background: #eef2ff;
}

.file-placeholder[b-5tx67ciy8a] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #718096;
}

.file-placeholder .oi[b-5tx67ciy8a] {
    font-size: 40px;
    color: #cbd5e0;
}

.file-selected[b-5tx67ciy8a] {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.file-selected > .oi[b-5tx67ciy8a] {
    font-size: 32px;
    color: #667eea;
}

.file-info[b-5tx67ciy8a] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.file-name[b-5tx67ciy8a] {
    font-weight: 600;
    color: #2d3748;
    font-size: 15px;
}

.file-size[b-5tx67ciy8a] {
    color: #718096;
    font-size: 13px;
}

.file-check[b-5tx67ciy8a] {
    color: #10b981;
    font-size: 24px;
}

/* Validation Error */
.validation-error-modern[b-5tx67ciy8a] {
    color: #e53e3e;
  font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.validation-error-modern[b-5tx67ciy8a]::before {
    content: '?';
    font-size: 14px;
}

/* Form Actions */
.form-actions[b-5tx67ciy8a] {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

/* Upload Button */
.btn-upload-modern[b-5tx67ciy8a] {
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.4);
}

.btn-upload-modern:hover:not(:disabled)[b-5tx67ciy8a] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-upload-modern:active:not(:disabled)[b-5tx67ciy8a] {
    transform: translateY(0);
}

.btn-upload-modern:disabled[b-5tx67ciy8a] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-upload-modern .oi[b-5tx67ciy8a] {
    font-size: 18px;
}

/* Spinner */
.spinner-modern[b-5tx67ciy8a] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
 border-radius: 50%;
    animation: spin-b-5tx67ciy8a 0.6s linear infinite;
}

@keyframes spin-b-5tx67ciy8a {
    to { transform: rotate(360deg); }
}

/* Version Info Grid */
.version-info-grid[b-5tx67ciy8a] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item[b-5tx67ciy8a] {
    background: #f8fafc;
padding: 20px;
    border-radius: 10px;
  border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.info-item:hover[b-5tx67ciy8a] {
    background: #eef2ff;
    transform: translateX(4px);
}

.info-item.full-width[b-5tx67ciy8a] {
    grid-column: 1 / -1;
}

.info-label[b-5tx67ciy8a] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #718096;
    margin-bottom: 8px;
    text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-label .oi[b-5tx67ciy8a] {
    font-size: 14px;
    color: #667eea;
}

.info-value[b-5tx67ciy8a] {
    font-size: 16px;
    color: #2d3748;
    font-weight: 500;
}

.release-notes[b-5tx67ciy8a] {
    white-space: pre-wrap;
    line-height: 1.6;
    color: #4a5568;
}

/* Download Link */
.download-link[b-5tx67ciy8a] {
    color: #667eea;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    word-break: break-all;
}

.download-link:hover[b-5tx67ciy8a] {
    color: #5568d3;
    text-decoration: underline;
}

.download-link .oi[b-5tx67ciy8a] {
    font-size: 14px;
}

/* Empty State */
.empty-state[b-5tx67ciy8a] {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
}

.empty-icon[b-5tx67ciy8a] {
    font-size: 64px;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.empty-state p[b-5tx67ciy8a] {
  font-size: 18px;
    font-weight: 600;
    color: #4a5568;
    margin: 0 0 10px 0;
}

.empty-hint[b-5tx67ciy8a] {
    font-size: 14px;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .application-update-page[b-5tx67ciy8a] {
   padding: 15px;
    }

    .page-header[b-5tx67ciy8a] {
        padding: 20px;
    }

    .page-header-content h3[b-5tx67ciy8a] {
        font-size: 24px;
    }

    .card-header-modern[b-5tx67ciy8a] {
        padding: 16px 20px;
    }

    .card-body-modern[b-5tx67ciy8a] {
      padding: 20px;
    }

    .form-row[b-5tx67ciy8a] {
   grid-template-columns: 1fr;
    }

    .version-info-grid[b-5tx67ciy8a] {
        grid-template-columns: 1fr;
    }

    .info-item.full-width[b-5tx67ciy8a] {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .application-update-page[b-5tx67ciy8a] {
        padding: 10px;
    }

    .page-header[b-5tx67ciy8a] {
        padding: 15px;
    }

    .card-header-modern[b-5tx67ciy8a] {
        padding: 12px 15px;
    }

    .card-header-modern h4[b-5tx67ciy8a] {
        font-size: 18px;
    }

    .card-body-modern[b-5tx67ciy8a] {
        padding: 15px;
    }

    .btn-upload-modern[b-5tx67ciy8a] {
        width: 100%;
        justify-content: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *[b-5tx67ciy8a],
    *[b-5tx67ciy8a]::before,
    *[b-5tx67ciy8a]::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
     transition-duration: 0.01ms !important;
    }
}

.btn-upload-modern:focus-visible[b-5tx67ciy8a],
.form-input-modern:focus-visible[b-5tx67ciy8a],
.form-textarea-modern:focus-visible[b-5tx67ciy8a] {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}
/* _content/Remotely_Server/Components/Pages/Branding.razor.rz.scp.css */
.branding-icon[b-l3xyccfb1h] {
    max-width: 8rem;
    height: auto;
}
/* _content/Remotely_Server/Components/Pages/Credits.razor.rz.scp.css */
li[b-hs9f665pat] {
    word-wrap: break-word;
}
/* _content/Remotely_Server/Components/Pages/Deploy.razor.rz.scp.css */
/* Force all section titles and strong tags to use a dark color for readability */
.section-title[b-pdbgobaf5d], h4[b-pdbgobaf5d], h3[b-pdbgobaf5d], h2[b-pdbgobaf5d], h1[b-pdbgobaf5d], strong[b-pdbgobaf5d] {
    color: var(--text-primary) !important;
    font-weight: 700;
}

/* Existing styles below */
.deploy-container[b-pdbgobaf5d] {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.deploy-section[b-pdbgobaf5d] {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 04px 16px rgba(37, 99, 235, 0.08), 0 1.5px 4px rgba(0, 0, 0, 0.04);
}

.section-title[b-pdbgobaf5d] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.section-description[b-pdbgobaf5d] {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.input-group[b-pdbgobaf5d] {
    display: flex;
    box-shadow: 02px 4px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.input-group .form-control[b-pdbgobaf5d] {
    border: 2px solid var(--gray-300);
    border-right: none;
    border-radius: 10px 0 0 10px;
    padding: 0.875rem 1rem;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.95rem;
    background: var(--gray-50);
}

.input-group .form-control:focus[b-pdbgobaf5d] {
    border-color: var(--primary-blue);
    box-shadow: none;
}

.input-group .btn[b-pdbgobaf5d] {
    border-radius: 0 10px 10px 0;
    padding: 0.875rem 1.5rem;
    border: 2px solid var(--primary-blue);
    border-left: none;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.input-group .btn:hover[b-pdbgobaf5d] {
    background: var(--primary-blue-hover);
    border-color: var(--primary-blue-hover);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .deploy-section[b-pdbgobaf5d] {
        padding: 1.5rem;
    }
    
    .input-group[b-pdbgobaf5d] {
        flex-direction: column;
    }
    
    .input-group .form-control[b-pdbgobaf5d],
    .input-group .btn[b-pdbgobaf5d] {
        border-radius: 10px;
        border: 2px solid var(--gray-300);
    }
    
    .input-group .btn[b-pdbgobaf5d] {
        margin-top: 0.5rem;
        justify-content: center;
    }
}
/* _content/Remotely_Server/Components/Pages/DeviceDetails.razor.rz.scp.css */
.device-details-container[b-oui5vzxmdt] {
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-oui5vzxmdt] {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.page-title[b-oui5vzxmdt] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.page-title .oi[b-oui5vzxmdt] {
    color: var(--primary-blue);
}

.page-description[b-oui5vzxmdt] {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

.devices-grid[b-oui5vzxmdt] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.device-card[b-oui5vzxmdt] {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.device-card:hover[b-oui5vzxmdt] {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.device-header[b-oui5vzxmdt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-100);
}

.device-name[b-oui5vzxmdt] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.device-status[b-oui5vzxmdt] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.device-status.online[b-oui5vzxmdt] {
    background: #dcfce7;
    color: #166534;
}

.device-status.offline[b-oui5vzxmdt] {
    background: #fee2e2;
    color: #991b1b;
}

.device-status[b-oui5vzxmdt]::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.device-info[b-oui5vzxmdt] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.device-info-item[b-oui5vzxmdt] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

.device-info-item .oi[b-oui5vzxmdt] {
    color: var(--primary-blue);
}

.device-actions[b-oui5vzxmdt] {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--gray-100);
}

.device-actions .btn[b-oui5vzxmdt] {
    flex: 1;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

.filter-bar[b-oui5vzxmdt] {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-bar .form-control[b-oui5vzxmdt],
.filter-bar .form-select[b-oui5vzxmdt] {
    max-width: 250px;
    font-family: 'Inter', sans-serif;
}

.search-box[b-oui5vzxmdt] {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box .oi[b-oui5vzxmdt] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.search-box .form-control[b-oui5vzxmdt] {
    padding-left: 2.5rem;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .devices-grid[b-oui5vzxmdt] {
        grid-template-columns: 1fr;
    }
    
    .filter-bar[b-oui5vzxmdt] {
        flex-direction: column;
    }
    
    .filter-bar .form-control[b-oui5vzxmdt],
    .filter-bar .form-select[b-oui5vzxmdt],
    .search-box[b-oui5vzxmdt] {
        max-width: 100%;
        width: 100%;
    }
}
/* _content/Remotely_Server/Components/Pages/Downloads.razor.rz.scp.css */
.downloads-container[b-4lrfl4ek6n] {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-primary);
    background: var(--gray-50);
}

.page-header[b-4lrfl4ek6n] {
    margin-bottom: 2rem;
}

.page-title[b-4lrfl4ek6n] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.page-description[b-4lrfl4ek6n] {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

.download-section[b-4lrfl4ek6n] {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 01px 3px rgba(0, 0, 0, 0.07);
}

.section-header[b-4lrfl4ek6n] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.section-header .oi[b-4lrfl4ek6n] {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.section-title[b-4lrfl4ek6n] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.section-description[b-4lrfl4ek6n] {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.download-grid[b-4lrfl4ek6n] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.download-card[b-4lrfl4ek6n] {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
    color: var(--text-primary);
}

.downloads-card[b-4lrfl4ek6n] {
    box-shadow: 04px 24px rgba(37, 99, 235, 0.08), 01.5px 4px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    background: var(--white);
    margin-bottom: 2.5rem;
    padding: 2.5rem 2rem 2rem 2rem;
    border: 1.5px solid var(--gray-200);
}

.card-header-modern[b-4lrfl4ek6n] {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1.5px solid var(--gray-200);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.card-header-icon[b-4lrfl4ek6n] {
    font-size: 2rem;
    color: var(--primary-blue);
    opacity: 0.85;
}

.card-title[b-4lrfl4ek6n] {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.card-content[b-4lrfl4ek6n] {
    font-family: 'Inter', sans-serif;
}

.platforms-grid[b-4lrfl4ek6n] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.platform-section[b-4lrfl4ek6n] {
    background: var(--gray-50);
    border-radius: 12px;
    box-shadow: 02px 8px rgba(37, 99, 235, 0.06);
    padding: 1.25rem 1rem 1rem 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.platform-header[b-4lrfl4ek6n] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.platform-icon[b-4lrfl4ek6n] {
    font-size: 1.25rem;
    color: var(--primary-blue);
    opacity: 0.85;
}

.download-icon[b-4lrfl4ek6n] {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-right: 0.25rem;
    vertical-align: middle;
}

.download-link[b-4lrfl4ek6n] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
}

.download-link:hover[b-4lrfl4ek6n] {
    color: var(--primary-blue-hover);
    text-decoration: underline;
}

.download-link[b-4lrfl4ek6n]::before {
    content: '?';
    font-size: 1.25rem;
    font-weight: bold;
}

.alert[b-4lrfl4ek6n], .banner[b-4lrfl4ek6n], .info-banner[b-4lrfl4ek6n] {
    border-radius: 12px;
    border: none;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    background: #e0edfa;
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
}

/* Fix for headings and muted text that may be white */
h1[b-4lrfl4ek6n], h2[b-4lrfl4ek6n], h3[b-4lrfl4ek6n], h4[b-4lrfl4ek6n], h5[b-4lrfl4ek6n], h6[b-4lrfl4ek6n], .section-title[b-4lrfl4ek6n], .page-title[b-4lrfl4ek6n] {
    color: var(--text-primary) !important;
    font-weight: 700;
}

.text-muted[b-4lrfl4ek6n], .text-secondary[b-4lrfl4ek6n], .muted[b-4lrfl4ek6n], .secondary[b-4lrfl4ek6n], .text-light[b-4lrfl4ek6n], .text-white[b-4lrfl4ek6n], .text-info[b-4lrfl4ek6n], .text-success[b-4lrfl4ek6n], .text-danger[b-4lrfl4ek6n], .text-warning[b-4lrfl4ek6n] {
    color: var(--gray-500) !important;
    opacity: 1 !important;
}

/* Fix faded/disabled text (e.g. grayed out download options) */
[style*="color: white"][b-4lrfl4ek6n], [style*="color:#fff"][b-4lrfl4ek6n], [style*="color:#ffffff"][b-4lrfl4ek6n], [style*="color: #fff"][b-4lrfl4ek6n], [style*="color: #ffffff"][b-4lrfl4ek6n] {
    color: var(--gray-400) !important;
}

/* Ensure all code and pre blocks are readable */
code[b-4lrfl4ek6n], pre[b-4lrfl4ek6n] {
    color: #e11d48 !important;
    background: var(--gray-50);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 1em;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 0.25rem;
    word-break: break-all;
}

/* Spacing for sections */
.download-section[b-4lrfl4ek6n], .section-header[b-4lrfl4ek6n], .section-title[b-4lrfl4ek6n], .section-description[b-4lrfl4ek6n] {
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .download-grid[b-4lrfl4ek6n] {
        grid-template-columns: 1fr;
    }
    .downloads-card[b-4lrfl4ek6n] {
        padding: 1.5rem 0.75rem 1.25rem 0.75rem;
    }
    .platforms-grid[b-4lrfl4ek6n] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .download-section[b-4lrfl4ek6n] {
        padding: 1rem;
    }
    .downloads-card[b-4lrfl4ek6n] {
        padding: 1rem 0.25rem 1rem 0.25rem;
    }
    .card-header-modern[b-4lrfl4ek6n] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .alert[b-4lrfl4ek6n], .banner[b-4lrfl4ek6n], .info-banner[b-4lrfl4ek6n] {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Force all strong tags to use a dark color for readability */
.downloads-container strong[b-4lrfl4ek6n],
.download-section strong[b-4lrfl4ek6n],
.download-card strong[b-4lrfl4ek6n],
strong[b-4lrfl4ek6n] {
    color: var(--text-primary) !important;
    font-weight: 700;
}

/* Force all .small and similar tags to use a dark color for readability */
.small[b-4lrfl4ek6n], .text-small[b-4lrfl4ek6n], .download-section .small[b-4lrfl4ek6n], .download-card .small[b-4lrfl4ek6n] {
    color: var(--text-secondary) !important;
    font-size: 0.95em;
    opacity: 1 !important;
    font-family: 'Inter', sans-serif;
    margin-top: 0.5rem;
}
/* _content/Remotely_Server/Components/Pages/GetSupport.razor.rz.scp.css */
input[type='checkbox'][b-h9slaovdcx] {
    width: 25px;
    height: 25px;
}
/* _content/Remotely_Server/Components/Pages/ManageOrganization.razor.rz.scp.css */
/* Manage Organization - Modern UI */

.org-page[b-g4ao4op8z7] {
    padding: 25px;
    background: #f5f7fa;
    min-height: calc(100vh - 80px);
    max-width: 1400px;
    margin: 0 auto;
}

/* Page Header */
.page-header[b-g4ao4op8z7] {
    background: white;
    padding: 24px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 24px;
}

.header-content[b-g4ao4op8z7] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon[b-g4ao4op8z7] {
    width: 64px;
height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.header-text h1[b-g4ao4op8z7] {
    margin: 0 0 4px 0;
    color: #2d3748;
    font-size: 28px;
    font-weight: 700;
}

.header-text p[b-g4ao4op8z7] {
    margin: 0;
    color: #718096;
 font-size: 14px;
}

/* Content Cards */
.content-card[b-g4ao4op8z7] {
    background: white;
border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 24px;
    overflow: hidden;
}

.card-header[b-g4ao4op8z7] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header .header-icon[b-g4ao4op8z7] {
    font-size: 24px;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
}

.card-header h2[b-g4ao4op8z7] {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    flex: 1;
}

.help-btn[b-g4ao4op8z7] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
  height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
 transition: all 0.3s;
    font-size: 14px;
}

.help-btn:hover[b-g4ao4op8z7] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.card-body[b-g4ao4op8z7] {
    padding: 30px;
}

/* Form Styles */
.form-grid[b-g4ao4op8z7] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.form-group[b-g4ao4op8z7] {
    display: flex;
    flex-direction: column;
}

.form-label[b-g4ao4op8z7] {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label .oi[b-g4ao4op8z7] {
    color: #667eea;
    font-size: 14px;
}

.form-input[b-g4ao4op8z7] {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
    background: #f8fafc;
}

.form-input:focus[b-g4ao4op8z7] {
    outline: none;
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input.readonly[b-g4ao4op8z7] {
    background: #f1f5f9;
    color: #64748b;
    cursor: not-allowed;
}

.form-hint[b-g4ao4op8z7] {
    color: #667eea;
    font-size: 12px;
    margin-top: 4px;
    display: flex;
    align-items: center;
  gap: 4px;
}

/* Checkbox Styles */
.checkbox-group[b-g4ao4op8z7] {
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.checkbox-label[b-g4ao4op8z7] {
    display: flex;
    align-items: center;
    gap: 10px;
 cursor: pointer;
    font-size: 14px;
    color: #2d3748;
    font-weight: 500;
}

.checkbox-label.inline[b-g4ao4op8z7] {
    display: inline-flex;
    margin: 0;
}

.checkbox-label input[type="checkbox"][b-g4ao4op8z7] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #667eea;
}

/* Device Groups */
.device-groups-container[b-g4ao4op8z7] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.groups-list[b-g4ao4op8z7] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.group-select[b-g4ao4op8z7] {
    width: 100%;
    padding: 8px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #f8fafc;
    min-height: 200px;
}

.group-select:focus[b-g4ao4op8z7] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.group-select option[b-g4ao4op8z7] {
    padding: 8px;
    border-radius: 4px;
}

.add-group[b-g4ao4op8z7] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Input Group */
.input-group[b-g4ao4op8z7] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.input-group .form-input[b-g4ao4op8z7] {
    flex: 1;
}

/* Buttons */
.btn[b-g4ao4op8z7] {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
 align-items: center;
    gap: 8px;
    font-size: 14px;
    font-family: inherit;
}

.btn-primary[b-g4ao4op8z7] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover[b-g4ao4op8z7] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-g4ao4op8z7] {
    background: #718096;
  color: white;
}

.btn-secondary:hover[b-g4ao4op8z7] {
    background: #4a5568;
    transform: translateY(-2px);
}

.btn-danger[b-g4ao4op8z7] {
    background: #ef4444;
    color: white;
}

.btn-danger:hover[b-g4ao4op8z7] {
    background: #dc2626;
    transform: translateY(-2px);
}

.btn-warning[b-g4ao4op8z7] {
    background: #f59e0b;
    color: white;
}

.btn-warning:hover[b-g4ao4op8z7] {
    background: #d97706;
transform: translateY(-2px);
}

.btn-sm[b-g4ao4op8z7] {
    padding: 6px 14px;
    font-size: 13px;
}

.btn:disabled[b-g4ao4op8z7] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn .oi[b-g4ao4op8z7] {
    font-size: 14px;
}

/* Table Styles */
.table-container[b-g4ao4op8z7] {
    overflow-x: auto;
  border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.data-table[b-g4ao4op8z7] {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.data-table thead[b-g4ao4op8z7] {
    background: #f7fafc;
}

.data-table th[b-g4ao4op8z7] {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td[b-g4ao4op8z7] {
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.data-table tbody tr:hover[b-g4ao4op8z7] {
    background: #f7fafc;
}

.data-table tbody tr:last-child td[b-g4ao4op8z7] {
    border-bottom: none;
}

.user-cell[b-g4ao4op8z7] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-icon[b-g4ao4op8z7] {
    color: #667eea;
    font-size: 16px;
}

.invite-link[b-g4ao4op8z7] {
    color: #667eea;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: all 0.2s;
}

.invite-link:hover[b-g4ao4op8z7] {
    color: #5568d3;
    text-decoration: underline;
}

/* Empty State */
.empty-state[b-g4ao4op8z7] {
    text-align: center;
    padding: 40px 20px;
    color: #718096;
}

.empty-icon[b-g4ao4op8z7] {
    font-size: 48px;
    color: #cbd5e0;
    margin-bottom: 12px;
}

.empty-state p[b-g4ao4op8z7] {
    margin: 0;
    font-size: 16px;
    color: #4a5568;
}

/* Add User Section */
.add-user-section[b-g4ao4op8z7] {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #e2e8f0;
}

.add-user-section h3[b-g4ao4op8z7] {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
}

.text-muted[b-g4ao4op8z7] {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .device-groups-container[b-g4ao4op8z7] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .org-page[b-g4ao4op8z7] {
        padding: 16px;
    }

    .page-header[b-g4ao4op8z7] {
    padding: 16px 20px;
    }

    .header-content[b-g4ao4op8z7] {
  gap: 12px;
    }

    .header-icon[b-g4ao4op8z7] {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .header-text h1[b-g4ao4op8z7] {
        font-size: 22px;
    }

    .card-header[b-g4ao4op8z7] {
        padding: 16px 20px;
    }

    .card-body[b-g4ao4op8z7] {
  padding: 20px;
    }

    .form-grid[b-g4ao4op8z7] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .input-group[b-g4ao4op8z7] {
        flex-wrap: wrap;
    }

    .table-container[b-g4ao4op8z7] {
        font-size: 12px;
 }

    .data-table th[b-g4ao4op8z7],
    .data-table td[b-g4ao4op8z7] {
        padding: 8px 10px;
    }

    .btn[b-g4ao4op8z7] {
   font-size: 13px;
  padding: 8px 16px;
    }

    .btn-sm[b-g4ao4op8z7] {
        padding: 5px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header-content[b-g4ao4op8z7] {
  flex-direction: column;
      text-align: center;
}

    .input-group[b-g4ao4op8z7] {
        flex-direction: column;
        align-items: stretch;
    }

    .input-group .btn[b-g4ao4op8z7] {
        width: 100%;
        justify-content: center;
    }

    .checkbox-label.inline[b-g4ao4op8z7] {
    width: 100%;
        justify-content: center;
    }
}
/* _content/Remotely_Server/Components/Pages/ScriptsPage.razor.rz.scp.css */
.scripts-container[b-txf18ddko1] {
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-txf18ddko1] {
    background: var(--white);
    border-radius: 16px;
  padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content[b-txf18ddko1] {
    flex: 1;
}

.page-title[b-txf18ddko1] {
    font-size: 2rem;
    font-weight: 700;
  color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.page-title .oi[b-txf18ddko1] {
    color: var(--primary-blue);
}

.page-description[b-txf18ddko1] {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

.header-actions[b-txf18ddko1] {
    display: flex;
    gap: 1rem;
}

.scripts-layout[b-txf18ddko1] {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
}

.scripts-sidebar[b-txf18ddko1] {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
 top: 5rem;
}

.sidebar-title[b-txf18ddko1] {
  font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
 border-bottom: 2px solid var(--gray-200);
 font-family: 'Inter', sans-serif;
}

.script-list[b-txf18ddko1] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.script-item[b-txf18ddko1] {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.script-item:hover[b-txf18ddko1] {
    background: var(--gray-100);
    color: var(--text-primary);
}

.script-item.active[b-txf18ddko1] {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: var(--primary-blue);
    font-weight: 600;
}

.script-item .oi[b-txf18ddko1] {
font-size: 0.875rem;
}

.scripts-content[b-txf18ddko1] {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.script-editor[b-txf18ddko1] {
    margin-bottom: 1.5rem;
}

.editor-header[b-txf18ddko1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.editor-title[b-txf18ddko1] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.editor-actions[b-txf18ddko1] {
    display: flex;
    gap: 0.5rem;
}

.code-editor[b-txf18ddko1] {
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    min-height: 300px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    padding: 1rem;
  background: var(--gray-50);
    resize: vertical;
}

.code-editor:focus[b-txf18ddko1] {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.script-info[b-txf18ddko1] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-card[b-txf18ddko1] {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: 10px;
 border: 1px solid var(--gray-200);
}

.info-label[b-txf18ddko1] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.info-value[b-txf18ddko1] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.execution-section[b-txf18ddko1] {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.execution-title[b-txf18ddko1] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.execution-title .oi[b-txf18ddko1] {
    color: var(--primary-blue);
}

.device-selector[b-txf18ddko1] {
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .scripts-layout[b-txf18ddko1] {
        grid-template-columns: 1fr;
    }
    
    .scripts-sidebar[b-txf18ddko1] {
        position: static;
    }
    
    .page-header[b-txf18ddko1] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .scripts-content[b-txf18ddko1] {
        padding: 1.5rem;
    }
    
    .script-info[b-txf18ddko1] {
        grid-template-columns: 1fr;
    }
}
/* _content/Remotely_Server/Components/Pages/ServerConfig.razor.rz.scp.css */
.list-box[b-8agd5wt5ap] {
    padding: 1em;
    border: 2px solid gray;
    height: 8em;
    overflow-y: scroll;
    overflow-x: hidden;
    white-space: nowrap;
    border-radius: 5px;
}

#saveButton[b-8agd5wt5ap] {
    position: fixed;
    right: 40px;
    bottom: 20px;
}
/* _content/Remotely_Server/Components/Pages/ServerLogs.razor.rz.scp.css */
.buttons-row[b-gzlf2la9k2] {
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-column-gap: 2em;
}

.filters-row[b-gzlf2la9k2] {
    display: grid;
    grid-template-columns: auto auto auto 1fr;
    grid-column-gap: 1em;
}

.logs-content[b-gzlf2la9k2] {
    width: 100%;
    white-space: pre;
    height: 500px;
}


@media (max-width: 641px) {
    .buttons-row[b-gzlf2la9k2] {
        grid-template-columns: 1fr;
        text-align: center;
        grid-row-gap: 1em;
    }

    .filters-row[b-gzlf2la9k2] {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        grid-row-gap: 0.5em;
    }
}
/* _content/Remotely_Server/Components/Pages/UserOptions.razor.rz.scp.css */
.user-options-container[b-rpdklo84cz] {
    max-width: 900px;
    margin: 0 auto;
}

.page-header[b-rpdklo84cz] {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.page-title[b-rpdklo84cz] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.page-title .oi[b-rpdklo84cz] {
    color: var(--primary-blue);
}

.page-description[b-rpdklo84cz] {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

.options-sections[b-rpdklo84cz] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.option-section[b-rpdklo84cz] {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-header[b-rpdklo84cz] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
 margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.section-header .oi[b-rpdklo84cz] {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.section-title[b-rpdklo84cz] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.option-group[b-rpdklo84cz] {
    margin-bottom: 1.5rem;
}

.option-group:last-child[b-rpdklo84cz] {
    margin-bottom: 0;
}

.option-label[b-rpdklo84cz] {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.option-description[b-rpdklo84cz] {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.form-control[b-rpdklo84cz],
.form-select[b-rpdklo84cz] {
  width: 100%;
    font-family: 'Inter', sans-serif;
}

.toggle-option[b-rpdklo84cz] {
    display: flex;
  align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-option:hover[b-rpdklo84cz] {
    background: var(--gray-100);
}

.toggle-info[b-rpdklo84cz] {
    flex: 1;
}

.toggle-title[b-rpdklo84cz] {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.toggle-description[b-rpdklo84cz] {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

.toggle-switch[b-rpdklo84cz] {
    position: relative;
    width: 52px;
    height: 28px;
}

.toggle-switch input[b-rpdklo84cz] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider[b-rpdklo84cz] {
    position: absolute;
  cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider[b-rpdklo84cz]:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider[b-rpdklo84cz] {
    background-color: var(--primary-blue);
}

input:checked + .toggle-slider[b-rpdklo84cz]:before {
    transform: translateX(24px);
}

.color-picker-group[b-rpdklo84cz] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.color-preview[b-rpdklo84cz] {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: 2px solid var(--gray-300);
    cursor: pointer;
    transition: all 0.3s;
}

.color-preview:hover[b-rpdklo84cz] {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button-group[b-rpdklo84cz] {
    display: flex;
    gap: 1rem;
margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-200);
}

.button-group .btn[b-rpdklo84cz] {
    flex: 1;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .option-section[b-rpdklo84cz] {
 padding: 1.5rem;
    }
    
    .button-group[b-rpdklo84cz] {
        flex-direction: column;
    }
    
    .color-picker-group[b-rpdklo84cz] {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* _content/Remotely_Server/Components/Scripts/RunScript.razor.rz.scp.css */
.main-grid[b-tf2fmbck0b] {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-row-gap: 1em;
    grid-template-columns: auto 1fr 1fr;
    grid-column-gap: 2em;
}

.column-wrapper[b-tf2fmbck0b] {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow-y: auto;
}


.item-list-border[b-tf2fmbck0b] {
    border: 1px solid gray;
    padding: .5em;
    height: 100%;
    border-radius: 5px;
    overflow-y: auto;
}
/* _content/Remotely_Server/Components/Scripts/SavedScripts.razor.rz.scp.css */
.outer-grid[b-iw4gf7y9o0] {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-column-gap: 2.5em;
}

.left-outer-grid[b-iw4gf7y9o0] {
    display: grid;
    grid-template-rows: auto 1fr;
}

.scripts-tree-view[b-iw4gf7y9o0] {
    border-radius: 5px;
    padding: .5em;

}

.tree-view-wrapper-grid[b-iw4gf7y9o0] {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow-y: auto;
}


@media (max-width: 641px) {
    .controls-section[b-iw4gf7y9o0] {
        display: grid;
        grid-template-columns: 1fr;
    }

}
/* _content/Remotely_Server/Components/Scripts/ScriptSchedules.razor.rz.scp.css */
.item-list-border[b-6bg0zledbf] {
    border: 1px solid gray;
    padding: .5em;
    height: 300px;
    border-radius: 5px;
    overflow-y: auto;
}
/* _content/Remotely_Server/Components/ToastHarness.razor.rz.scp.css */
.toast-harness[b-lq14gki6p0] {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 5;
    user-select: none;
    pointer-events: none;
}


.toast-message[b-lq14gki6p0] {
    background-color: rgb(25,25,25);
    color: white;
    transform: translate(0, 0);
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    opacity: 1;
    color: white;
    border-radius: 5px;
    user-select: none;
    pointer-events: none;
    animation-name: toast-message-b-lq14gki6p0;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
}

@keyframes toast-message-b-lq14gki6p0 {
    from {
        transform: translate(0, 0);
        opacity: 1;
    }

    to {
        transform: translate(calc(100% + 50px), 0);
        opacity: 0;
    }
}
/* _content/Remotely_Server/Components/TreeView/TreeView.razor.rz.scp.css */
.tree-view-wrapper[b-9nxcv99jti]{
    overflow-y: auto;
}
/* _content/Remotely_Server/Components/TreeView/TreeViewItem.razor.rz.scp.css */
.tree-view-item[b-75aqzouzll] {
   padding: .25em .5em .25em .5em;
}
