/* /Components/BscInput.razor.rz.scp.css */
.bsc-wrapper[b-rjsxyqck0y] {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-family: var(--bs-font-sans-serif, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif);
  /* Match Bootstrap form-control height exactly */
  padding: .375rem .75rem;
  border: 1px solid #dee2e6;
  border-radius: .375rem;
  background-color: #fff;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  /* Use Bootstrap's exact form-control height calculation */
  height: calc(1.5em + .75rem + 2px);
  width: 100%;
  /* Ensure it renders on a new line */
  display: block;
  position: relative;
}

.bsc-wrapper:focus-within[b-rjsxyqck0y] {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: 0;
}

.bsc-wrapper:hover:not(:focus-within)[b-rjsxyqck0y] {
  border-color: #b3d4fc;
}

.bsc-wrapper.disabled[b-rjsxyqck0y] {
  background-color: #e9ecef;
  opacity: 1;
}

/* Validation states */
.bsc-wrapper.valid[b-rjsxyqck0y] {
  border-color: #198754;
  background-color: rgba(25, 135, 84, 0.05);
}

.bsc-wrapper.valid:focus-within[b-rjsxyqck0y] {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.bsc-wrapper.invalid[b-rjsxyqck0y] {
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05);
}

.bsc-wrapper.invalid:focus-within[b-rjsxyqck0y] {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.bsc-content[b-rjsxyqck0y] {
  display: flex;
  align-items: center;
  gap: .375rem;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.bsc-fixed[b-rjsxyqck0y] {
  opacity: .75;
  user-select: none;
  font-size: 1rem;
  font-weight: 400;
  color: #6c757d;
  line-height: 1.5;
}

.bsc-wrapper.valid .bsc-fixed[b-rjsxyqck0y] {
  color: #198754;
  opacity: 1;
}

.bsc-wrapper.invalid .bsc-fixed[b-rjsxyqck0y] {
  color: #dc3545;
  opacity: 1;
}

.bsc-seg[b-rjsxyqck0y] {
  text-align: center;
  padding: 0 .25rem;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 400;
  /* Remove individual borders */
  border: none;
  border-radius: .25rem;
  background-color: transparent;
  transition: background-color 0.15s ease-in-out;
  /* Make Bootstrap input inline-sized instead of full width */
  display: inline-block;
  height: 100%;
  /* Remove any min-height that might cause issues */
  min-height: 0;
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  letter-spacing: 0.1em;
}

.bsc-seg:focus[b-rjsxyqck0y] {
  background-color: rgba(13, 110, 253, 0.1);
  outline: 0;
  box-shadow: none;
}

.bsc-seg:hover:not(:disabled):not(:focus)[b-rjsxyqck0y] {
  background-color: rgba(13, 110, 253, 0.05);
}

.bsc-s1[b-rjsxyqck0y] { 
  width: 3rem; 
}

.bsc-s2[b-rjsxyqck0y] { 
  width: 4rem; 
}

.bsc-s3[b-rjsxyqck0y] { 
  width: 5rem; 
}

.bsc-seg:disabled[b-rjsxyqck0y] {
  background-color: transparent;
  opacity: 0.65;
  cursor: not-allowed;
}

/* Remove any conflicting form-control styles on individual segments */
.bsc-seg.form-control[b-rjsxyqck0y] {
  border: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
  padding: 0 .25rem;
  font-size: 1rem;
  height: 100% !important;
  min-height: 0 !important;
}

.bsc-seg.form-control:focus[b-rjsxyqck0y] {
  border: none !important;
  box-shadow: none !important;
  background-color: rgba(13, 110, 253, 0.1) !important;
}

.bsc-validation-icon[b-rjsxyqck0y] {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.15s ease-in-out;
  pointer-events: none;
}

.bsc-validation-icon .text-success[b-rjsxyqck0y] {
  color: #198754 !important;
}

.bsc-validation-icon .text-danger[b-rjsxyqck0y] {
  color: #dc3545 !important;
}

/* Animation for validation feedback */
@keyframes validationPulse-b-rjsxyqck0y {
  0% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.1); }
  100% { transform: translateY(-50%) scale(1); }
}

.bsc-wrapper.valid .bsc-validation-icon[b-rjsxyqck0y] {
  animation: validationPulse-b-rjsxyqck0y 0.3s ease-in-out;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .bsc-seg[b-rjsxyqck0y] {
    font-size: 0.9rem;
  }
  
  .bsc-fixed[b-rjsxyqck0y] {
    font-size: 0.9rem;
  }
  
  .bsc-validation-icon[b-rjsxyqck0y] {
    font-size: 0.9rem;
  }
}
/* /Components/HamburgerMenu.razor.rz.scp.css */
/* Hamburger Menu Styles */
.hamburger-menu-container[b-myvxkke3ku] {
    position: relative;
}

.hamburger-btn[b-myvxkke3ku] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 4px;
    padding: 0;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1600;
}

.hamburger-btn:hover[b-myvxkke3ku] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.hamburger-line[b-myvxkke3ku] {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1)[b-myvxkke3ku] {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2)[b-myvxkke3ku] {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3)[b-myvxkke3ku] {
    transform: rotate(-45deg) translate(7px, -6px);
}

.menu-overlay[b-myvxkke3ku] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.open[b-myvxkke3ku] {
    opacity: 1;
    visibility: visible;
}

.menu-content[b-myvxkke3ku] {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease;
    z-index: 1501;
    overflow-y: auto;
}

.menu-content.open[b-myvxkke3ku] {
    left: 0;
}

.menu-header[b-myvxkke3ku] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-header h3[b-myvxkke3ku] {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.menu-close[b-myvxkke3ku] {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.menu-close:hover[b-myvxkke3ku] {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.menu-nav[b-myvxkke3ku] {
    padding: 1rem 0;
}

.menu-item[b-myvxkke3ku] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    font-size: 0.95rem;
    cursor: pointer;
}

.menu-item:hover[b-myvxkke3ku] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
}

.menu-item i[b-myvxkke3ku] {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.toggle-item[b-myvxkke3ku] {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem;
}

.toggle-content[b-myvxkke3ku] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.menu-mode-toggle[b-myvxkke3ku] {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.menu-mode-toggle .toggle-switch[b-myvxkke3ku] {
    position: relative;
    width: 52px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.menu-mode-toggle .toggle-switch:hover[b-myvxkke3ku] {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.menu-mode-toggle .toggle-switch.active[b-myvxkke3ku] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 0 0.15rem rgba(102, 126, 234, 0.2);
}

.menu-mode-toggle .toggle-slider[b-myvxkke3ku] {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menu-mode-toggle .toggle-switch.active .toggle-slider[b-myvxkke3ku] {
    transform: translateX(24px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mode-description[b-myvxkke3ku] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.3;
}

/* Language selector styling in menu */
.language-item[b-myvxkke3ku] {
    flex-direction: column;
    align-items: stretch;
    padding: 0.875rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.language-item .language-selector[b-myvxkke3ku] {
    margin: 0;
}

.language-item .form-label[b-myvxkke3ku] {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.language-item .form-control[b-myvxkke3ku] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9rem;
}

.language-item .form-control:focus[b-myvxkke3ku] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
}

.language-item .form-control option[b-myvxkke3ku] {
    background: #667eea;
    color: white;
}

/* Mobile adjustments - Menu behaves as an overlay and auto-closes on navigation */
@media (max-width: 768px) {
    .menu-content[b-myvxkke3ku] {
        width: 100vw;
        left: -100vw;
    }
    
    .menu-content.open[b-myvxkke3ku] {
        left: 0;
    }
}

/* Desktop persistent sidebar - Menu stays open when navigating between pages */
@media (min-width: 769px) {
    .hamburger-menu-container[b-myvxkke3ku] {
        height: 100vh;
        width: 300px;
        position: relative;
        transition: width 0.3s ease;
    }
    
    /* When menu is closed, container takes no width */
    .hamburger-menu-container.menu-closed[b-myvxkke3ku] {
        width: 0;
    }
    
    .hamburger-btn[b-myvxkke3ku] {
        background: rgba(102, 126, 234, 0.9);
        border-color: rgba(102, 126, 234, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    /* Show hamburger button when menu is closed on desktop */
    .hamburger-menu-container.menu-closed .hamburger-btn[b-myvxkke3ku] {
        opacity: 1;
        visibility: visible;
        position: fixed;
        top: 1rem;
        left: 1rem;
        z-index: 1600;
    }
    
    .hamburger-btn:hover[b-myvxkke3ku] {
        background: rgba(102, 126, 234, 1);
        border-color: rgba(102, 126, 234, 0.9);
    }
    
    .hamburger-btn .hamburger-line[b-myvxkke3ku] {
        background: white;
    }
    
    .menu-overlay[b-myvxkke3ku] {
        display: none; /* No overlay needed on desktop */
    }
    
    .menu-content[b-myvxkke3ku] {
        position: relative;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        transition: transform 0.3s ease;
        z-index: 1501;
    }
    
    /* Default state: open and visible */
    .menu-content.open[b-myvxkke3ku] {
        transform: translateX(0);
    }
    
    /* Closed state: hide to the left */
    .menu-content:not(.open)[b-myvxkke3ku] {
        transform: translateX(-100%);
    }
}
/* /Components/RfInput.razor.rz.scp.css */
.rf-wrapper[b-a6i7r238oj] {
  display: flex;
  align-items: center;
  font-family: var(--bs-font-sans-serif, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif);
  padding: .375rem .75rem;
  border: 1px solid #dee2e6;
  border-radius: .375rem;
  background-color: #fff;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  height: calc(1.5em + .75rem + 2px);
  width: 100%;
  position: relative;
}

.rf-wrapper:focus-within[b-a6i7r238oj] {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: 0;
}

.rf-wrapper:hover:not(:focus-within)[b-a6i7r238oj] {
  border-color: #b3d4fc;
}

.rf-wrapper.disabled[b-a6i7r238oj] {
  background-color: #e9ecef;
  opacity: 1;
}

/* Validation states */
.rf-wrapper.valid[b-a6i7r238oj] {
  border-color: #198754;
  background-color: rgba(25, 135, 84, 0.05);
}

.rf-wrapper.valid:focus-within[b-a6i7r238oj] {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.rf-wrapper.invalid[b-a6i7r238oj] {
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05);
}

.rf-wrapper.invalid:focus-within[b-a6i7r238oj] {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.rf-content[b-a6i7r238oj] {
  display: flex;
  align-items: center;
  gap: .25rem;
  width: 100%;
  height: 100%;
}

.rf-fixed[b-a6i7r238oj] {
  font-weight: 600;
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.5;
  user-select: none;
  flex-shrink: 0;
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  letter-spacing: 0.05em;
}

.rf-input[b-a6i7r238oj] {
  flex: 1;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  padding: 0 .25rem;
  height: 100%;
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  letter-spacing: 0.05em;
}

.rf-input[b-a6i7r238oj]::placeholder {
  color: #6c757d;
  opacity: 0.7;
  font-style: italic;
}

.rf-input:disabled[b-a6i7r238oj] {
  background-color: transparent;
  opacity: 0.65;
  cursor: not-allowed;
}

.rf-validation-icon[b-a6i7r238oj] {
  flex-shrink: 0;
  margin-left: .25rem;
  font-size: 1rem;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.15s ease-in-out;
}

.rf-validation-icon .text-success[b-a6i7r238oj] {
  color: #198754 !important;
}

.rf-validation-icon .text-danger[b-a6i7r238oj] {
  color: #dc3545 !important;
}

/* Animation for validation feedback */
@keyframes validationPulse-b-a6i7r238oj {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.rf-wrapper.valid .rf-validation-icon[b-a6i7r238oj] {
  animation: validationPulse-b-a6i7r238oj 0.3s ease-in-out;
}

/* Focus and hover improvements */
.rf-wrapper:focus-within .rf-fixed[b-a6i7r238oj] {
  color: #495057;
}

.rf-wrapper.valid .rf-fixed[b-a6i7r238oj] {
  color: #198754;
}

.rf-wrapper.invalid .rf-fixed[b-a6i7r238oj] {
  color: #dc3545;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .rf-input[b-a6i7r238oj] {
    font-size: 0.9rem;
  }
  
  .rf-fixed[b-a6i7r238oj] {
    font-size: 0.9rem;
  }
  
  .rf-validation-icon[b-a6i7r238oj] {
    font-size: 0.9rem;
  }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* Main Layout Styles */
.app-layout[b-pguoj7d90k] {
    min-height: 100vh;
    position: relative;
}

/* Desktop layout - use flexbox for proper space management */
@media (min-width: 769px) {
    .app-layout[b-pguoj7d90k] {
        display: flex;
        height: 100vh;
    }
    
    .main-content[b-pguoj7d90k] {
        flex: 1;
        min-height: 100vh;
        padding: 0;
        transition: all 0.3s ease;
        overflow-y: auto;
    }
}

/* Mobile layout - stack vertically */
@media (max-width: 768px) {
    .main-content[b-pguoj7d90k] {
        min-height: 100vh;
        padding: 0;
    }
}

/* Header styling within the layout */
.app-header[b-pguoj7d90k] {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin: 1rem;
}

.app-title[b-pguoj7d90k] {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.3rem;
}

.app-subtitle[b-pguoj7d90k] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
}

.page-content[b-pguoj7d90k] {
    padding: 0 1rem 1rem 1rem;
}

.about-page[b-pguoj7d90k] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
}

.about-header[b-pguoj7d90k] {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1.5rem;
}

.about-header h1[b-pguoj7d90k] {
    color: #2d3748;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-header .lead[b-pguoj7d90k] {
    color: #4a5568;
    font-size: 1.2rem;
    margin: 0;
}

.about-content[b-pguoj7d90k] {
    line-height: 1.6;
}

.about-section[b-pguoj7d90k] {
    margin-bottom: 2.5rem;
}

.about-section h2[b-pguoj7d90k] {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-left: 4px solid #667eea;
    padding-left: 1rem;
}

.back-section[b-pguoj7d90k] {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

/* FAQ specific styles to match about page styling */
.faq-item[b-pguoj7d90k] {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

    .faq-item h4[b-pguoj7d90k] {
        color: #2c3e50;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .faq-item p[b-pguoj7d90k] {
        color: #5a6c7d;
        line-height: 1.6;
        margin: 0;
    }
