/* /Components/AddAdministratorModal.razor.rz.scp.css */
.modal-overlay[b-xkoi9s4nes] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.add-user-modal[b-xkoi9s4nes] {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Modal Header - Exact specifications provided */
.modal-header[b-xkoi9s4nes] {
  width: 100%;
  max-width: 1000px;
  height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px; /* spacing-xl */
  border-bottom: 1px solid #e5e7eb;
  background: white;
}

.header-left[b-xkoi9s4nes] {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 34px;
  width: 100%;
}

.user-icon[b-xkoi9s4nes] {
  width: 34px;
  height: 34px;
  color: #6b7280;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-header h2[b-xkoi9s4nes] {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  color: #111827;
}

.close-button[b-xkoi9s4nes] {
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
}

.close-button:hover[b-xkoi9s4nes] {
  background-color: #f3f4f6;
}

.close-icon[b-xkoi9s4nes] {
  width: 20px;
  height: 20px;
  color: #6b7280;
  stroke-width: 2;
}

/* Modal Body */
.modal-body[b-xkoi9s4nes] {
  padding: 16px 24px;
  flex: 1;
  min-height: 298px;
  overflow-y: auto;
  background: #f9fafb;
  position: relative;
}

/* Search Container */
.search-container[b-xkoi9s4nes] {
  margin-bottom: 24px;
}

.search-input-wrapper[b-xkoi9s4nes] {
  position: relative;
  background: #FFFFFF;
  border-radius: 50px;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 8px 0px 8px 16px;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  width: 100%;
}

.search-input[b-xkoi9s4nes] {
  width: 100%;
  padding: 11px 24px;
  border: 0;
  border-radius: 50px;
  font-size: 14px;
  background: white;
  transition: all 0.2s;
  box-shadow: 0px 1px 3px -2px black;
  height: 48px;
}

.search-input:focus[b-xkoi9s4nes] {
  outline: none;
  border-color: #005ecf;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.search-input[b-xkoi9s4nes]::placeholder {
  color: #6b7280;
}

.search-icon[b-xkoi9s4nes] {
  position: absolute;
  right: 5px;
  background-color: #f3f4f6;
  border-radius: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6b7280;
  pointer-events: none;
}

/* User Card - Matching the image design */
.user-card[b-xkoi9s4nes] {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 19px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.2s;
  height: 100px;
}

.user-card:hover[b-xkoi9s4nes] {
  border-color: #005ecf;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1);
}

.user-card.selected[b-xkoi9s4nes] {
  border-color: #005ecf;
  background: #f5f3ff;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.15);
}

.user-name[b-xkoi9s4nes] {
  font-size: 19px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 12px;
}

.user-info[b-xkoi9s4nes] {
  display: flex;
  gap: 40px;
  height: 60px;
  width: 70%;
  align-items: center;
  justify-content: space-between;
}

.user-details[b-xkoi9s4nes] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.user-identifier[b-xkoi9s4nes] {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.user-email[b-xkoi9s4nes] {
  font-size: 14px;
  color: #111827;
}

.user-phone[b-xkoi9s4nes] {
  font-size: 14px;
  color: #111827;
}

/* No User Card - Matching the image design */
.no-user-card[b-xkoi9s4nes] {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.no-user-message[b-xkoi9s4nes] {
  font-size: 16px;
  color: #111827;
  margin: 0;
  line-height: 1.5;
}

/* Invitation Section */

.checkbox-container[b-xkoi9s4nes] {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 14px;
  color: #6a7282;
  line-height: 1.43;
  margin-top: 16px;
  height: 32px;
}

.checkbox-container input[type="checkbox"][b-xkoi9s4nes] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #005ecf;
  margin: 0;
}

.checkbox-label[b-xkoi9s4nes] {
  flex: 1;
}

/* Email Input Section */
.email-input-section[b-xkoi9s4nes] {
  margin-top: 8px;
}

.email-input[b-xkoi9s4nes] {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  transition: all 0.2s;
  margin-bottom: 8px;
  height: 44px;
}

.email-input:focus[b-xkoi9s4nes] {
  outline: none;
  border-color: #005ecf;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.email-input.invalid[b-xkoi9s4nes] {
  border-color: #ef4444;
}

.email-input.invalid:focus[b-xkoi9s4nes] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.email-input[b-xkoi9s4nes]::placeholder {
  color: #6b7280;
}

.validation-message[b-xkoi9s4nes] {
  display: block;
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  margin-bottom: 8px;
}

.info-text[b-xkoi9s4nes] {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

.loading-message-container[b-xkoi9s4nes] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(249, 250, 251, 0.9);
  z-index: 10;
}

.loading-message[b-xkoi9s4nes] {
  width: 60px;
  height: 60px;
  border: 4px solid #ccc;
  border-top-color: #005ecf;
  border-radius: 50%;
  animation: spin-b-xkoi9s4nes 1s linear infinite;
}

@keyframes spin-b-xkoi9s4nes {
  to {
    transform: rotate(360deg);
  }
}

/* Modal Footer - Exact specifications provided */
.modal-footer[b-xkoi9s4nes] {
  width: 1000px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0px 21px;
  border-top: 1px solid #e5e7eb;
  background: white;
}

.modal-inner-footer[b-xkoi9s4nes] {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn[b-xkoi9s4nes] {
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  height: 48px;
  min-width: 92px;
}

.btn-primary[b-xkoi9s4nes] {
  background: #005ecf;
  color: white;
}

.btn-primary:hover:not(:disabled)[b-xkoi9s4nes] {
  background: #005dcfcb;
}

.btn-primary:disabled[b-xkoi9s4nes] {
  background: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
}

.btn-secondary[b-xkoi9s4nes] {
  border-radius: 50px;
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-secondary:hover[b-xkoi9s4nes] {
  background: #f3f4f6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .add-user-modal[b-xkoi9s4nes] {
    width: 95vw;
    max-height: 95vh;
  }

  .modal-header[b-xkoi9s4nes],
  .modal-footer[b-xkoi9s4nes] {
    width: 100%;
  }

  .modal-header[b-xkoi9s4nes] {
    padding: 20px;
  }

  .modal-footer[b-xkoi9s4nes] {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .add-user-modal[b-xkoi9s4nes] {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }

  .modal-header[b-xkoi9s4nes],
  .modal-body[b-xkoi9s4nes],
  .modal-footer[b-xkoi9s4nes] {
    padding-left: 16px;
    padding-right: 16px;
  }

  .modal-header h2[b-xkoi9s4nes] {
    font-size: 16px;
  }

  .user-info[b-xkoi9s4nes] {
    flex-direction: column;
    gap: 16px;
  }

  .modal-footer[b-xkoi9s4nes] {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .btn[b-xkoi9s4nes] {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .modal-header[b-xkoi9s4nes] {
    height: auto;
    min-height: 68px;
  }

  .modal-footer[b-xkoi9s4nes] {
    height: auto;
    min-height: 80px;
  }
}
/* /Components/AddApplicationModal.razor.rz.scp.css */
.modal-container.add-app[b-0o57zjv611] { width: 1000px; max-width: 1000px; border-radius: 12px !important; overflow: hidden; }

.panel-icon[b-0o57zjv611] { width: 22px; height: 22px; color: #0ea5e9; }

.modal-body[b-0o57zjv611] { padding: 16px 24px 0 24px; }

.app-grid[b-0o57zjv611] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}


@media (max-width: 480px) {
    .app-grid[b-0o57zjv611] {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.app-card[b-0o57zjv611] {
    position: relative;
    width: 100%;
    /* height: 56px; */
    border: 1px solid #E9EAEB;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 0px;
}

.app-card:hover[b-0o57zjv611] { 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.app-card.selected[b-0o57zjv611] { 
    border-color: #2563eb; 
    box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}

.app-card-inner[b-0o57zjv611] {
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: 12px;
    width: 100%;
    /* gap: 12px; */
}

.app-icon[b-0o57zjv611] {
    flex-shrink: 0;
    width: 56px !important;
    height: 56px !important;
    padding:auto;
    display: flex;
    border-right: 1px solid #E9EAEB;
    align-items: center;
    justify-content: center;
}

.app-icon svg[b-0o57zjv611] { 
    width: 30px; 
    height: 32px; 
}

.app-content[b-0o57zjv611] {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.app-name[b-0o57zjv611] { 
    font-size: 14px; 
    font-weight: 500;
    color: #374151;
    padding-left: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-checkbox-container[b-0o57zjv611] {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.app-checkbox[b-0o57zjv611] { 
    width: 16px; 
    height: 16px; 
    cursor: pointer;
    accent-color: #2563eb;
}

.header-title[b-0o57zjv611] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
}

.btn-next[b-0o57zjv611] {
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.close-btn[b-0o57zjv611] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
    display: flex;
}

.close-btn:img[b-0o57zjv611] {
    width: 50px;
    height: 50px;
}

.close-btn svg[b-0o57zjv611] {
    width: 20px;
    height: 20px;
}

.btn-next:disabled[b-0o57zjv611] { background: #93c5fd; cursor: not-allowed; }

.modal-overlay[b-0o57zjv611] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    /* Support for mobile safe areas */
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.add-application-modal[b-0o57zjv611] {
    background: white;
    border-radius: 12px;
    width: 600px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-header[b-0o57zjv611] {
    width: 100%;
    height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #E5E7EB;
    background: white;
}

.btn-cancel[b-0o57zjv611], .btn-next[b-0o57zjv611] {
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    min-width: 100px;
}

.btn-cancel[b-0o57zjv611] {
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-cancel:hover[b-0o57zjv611] {
    background: #f9fafb;
}

.header-left[b-0o57zjv611] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-icon[b-0o57zjv611] {
    width: 20px;
    height: 20px;
    color: #6B7280;
}

.modal-header h2[b-0o57zjv611] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.close-button[b-0o57zjv611] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 40px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover[b-0o57zjv611] {
    background-color: #F3F4F6;
}

.close-icon[b-0o57zjv611] {
    width: 20px;
    height: 20px;
    color: #6B7280;
    stroke-width: 2;
}

.modal-body[b-0o57zjv611] {
    padding: 20px 24px;
    flex: 1;
    min-height: 200px;
    overflow-y: auto;
    background: #F9FAFB;
}

.form-group[b-0o57zjv611] {
    margin-bottom: 24px;
}

.form-group label[b-0o57zjv611] {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-input[b-0o57zjv611] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: all 0.2s;
}

.form-input:focus[b-0o57zjv611] {
    outline: none;
    border-color: #005ECF;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-input[b-0o57zjv611]::placeholder {
    color: #9CA3AF;
}

.modal-footer[b-0o57zjv611] {
    width: 1000px;
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid #E5E7EB;
    background: white;
    opacity: 1;
}

.btn[b-0o57zjv611] {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    min-width: 100px;
}

.btn-primary[b-0o57zjv611] {
    background: #005ECF;
    color: white;
}

.btn-primary:hover:not(:disabled)[b-0o57zjv611] {
    background: #005dcfcb;
}

.btn-primary:disabled[b-0o57zjv611] {
    background: #D1D5DB;
    color: #9CA3AF;
    cursor: not-allowed;
}

.btn-secondary[b-0o57zjv611] {
    background: white;
    color: #374151;
    border: 1px solid #D1D5DB;
}

.btn-secondary:hover[b-0o57zjv611] {
    background: #F3F4F6;
}

@media (max-width: 1024px) {
    .modal-container.add-app[b-0o57zjv611] {
        width: 95vw;
        max-width: 95vw;
    }

    .modal-footer[b-0o57zjv611] {
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 900px) {
    .modal-container.add-app[b-0o57zjv611] {
        width: 98vw;
        max-width: 98vw;
        margin: 1vh;
    }
    
    .app-grid[b-0o57zjv611] {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .modal-container.add-app[b-0o57zjv611] {
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }

    .modal-header[b-0o57zjv611],
    .modal-body[b-0o57zjv611],
    .modal-footer[b-0o57zjv611] {
        padding-left: 16px;
        padding-right: 16px;
    }

    .modal-header[b-0o57zjv611] {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .modal-body[b-0o57zjv611] {
        padding: 16px;
        flex: 1;
        overflow-y: auto;
    }

    .modal-header h2[b-0o57zjv611] {
        font-size: 16px;
    }

    .modal-footer[b-0o57zjv611] {
        width: 100%;
        flex-direction: column-reverse;
        gap: 12px;
        padding: 16px;
    }

    .btn[b-0o57zjv611] {
        width: 100%;
        min-height: 44px; /* Minimum touch target size */
    }

    .app-card[b-0o57zjv611] {
        min-height: 90px; /* Larger touch target for mobile with vertical layout */
    }

    .app-card-inner[b-0o57zjv611] {
        flex-direction: column;
        align-items: center;
        padding: 0px 16px;
        gap: 8px;
        min-height: 90px;
    }

    /* Icon and checkbox on top row */
    .app-icon[b-0o57zjv611] {
        position: absolute;
        top: 12px;
        left: 12px;
        margin: 0 !important;
    }

    .app-checkbox-container[b-0o57zjv611] {
        position: absolute;
        top: 12px;
        right: 12px;
    }

    /* Name below */
    .app-content[b-0o57zjv611] {
        width: 100%;
        margin-top: 32px;
        justify-content: center;
        text-align: center;
    }

    .app-name[b-0o57zjv611] {
        white-space: normal;
        overflow: visible;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-header[b-0o57zjv611] {
        height: auto;
        min-height: 68px;
        padding: 12px 16px;
    }

    .modal-body[b-0o57zjv611] {
        padding: 12px;
    }

    .modal-footer[b-0o57zjv611] {
        width: 100%;
        height: auto;
        min-height: 80px;
        padding: 12px 16px;
    }

    .app-card[b-0o57zjv611] {
        min-height: 90px; /* Increased height for vertical layout */
    }

    .app-card-inner[b-0o57zjv611] {
        flex-direction: column;
        align-items: center;
        padding: 12px;
        gap: 8px;
        min-height: 90px;
    }

    /* Icon and checkbox row */
    .app-icon[b-0o57zjv611] {
        position: absolute;
        top: 12px;
        left: 12px;
        margin: 0 !important;
    }

    .app-checkbox-container[b-0o57zjv611] {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 24px;
        height: 24px;
    }

    /* Name below icon and checkbox */
    .app-content[b-0o57zjv611] {
        width: 100%;
        margin-top: 32px; /* Space for icon and checkbox above */
        justify-content: center;
        text-align: center;
    }

    .app-name[b-0o57zjv611] {
        font-size: 14px;
        white-space: normal; /* Allow text wrapping on mobile */
        overflow: visible;
        text-align: center;
        width: 100%;
    }

    .app-checkbox[b-0o57zjv611] {
        width: 18px;
        height: 18px; /* Larger checkbox for easier tapping */
    }
}

/* Extra small screens (phones in landscape) */
@media (max-width: 360px) {
    .modal-header h2[b-0o57zjv611] {
        font-size: 14px;
    }
    
    .app-name[b-0o57zjv611] {
        font-size: 14px;
    }
    
    .app-card[b-0o57zjv611] {
        min-height: 65px;
    }
    
    .app-card-inner[b-0o57zjv611] {
        padding: 12px;
        min-height: 65px;
    }
    
    .modal-body[b-0o57zjv611] {
        padding: 8px;
    }
}

/* Mobile landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .modal-container.add-app[b-0o57zjv611] {
        height: 100vh;
        max-height: 100vh;
    }
    
    .modal-body[b-0o57zjv611] {
        max-height: calc(100vh - 140px); /* Account for header and footer */
        overflow-y: auto;
    }
    
    .app-grid[b-0o57zjv611] {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

/* /Components/AddLocationModal.razor.rz.scp.css */
.modal-overlay[b-z7wxd1k5mi] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.add-location-modal[b-z7wxd1k5mi] {
  background: white;
  border-radius: 16px;
  width: 1000px;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.modal-header[b-z7wxd1k5mi] {
  width: 100%;
  max-width: 1000px;
  height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
  background: white;
}

.header-left[b-z7wxd1k5mi] {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 34px;
}

.location-icon[b-z7wxd1k5mi] {
  width: 34px;
  height: 34px;
  color: #6b7280;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-header h2[b-z7wxd1k5mi] {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  color: #111827;
}

.close-button[b-z7wxd1k5mi] {
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
}

.close-button:hover[b-z7wxd1k5mi] {
  background-color: #f3f4f6;
}

.modal-body[b-z7wxd1k5mi] {
  padding: 16px 24px;
  flex: 1;
  min-height: 298px;
  overflow-y: auto;
  background: #f9fafb;
}

.modal-footer[b-z7wxd1k5mi] {
  max-width: 1000px;
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0px 21px;
  border-top: 1px solid #e5e7eb;
  background: white;
}

.modal-footer-left[b-z7wxd1k5mi] {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-footer-right[b-z7wxd1k5mi] {
  display: flex;
  align-items: center;
  gap: 12px;
}

.confirmation-overlay[b-z7wxd1k5mi] {
  z-index: 4000;
}

.confirmation-modal[b-z7wxd1k5mi] {
  background: #ffffff;
  border-radius: 12px;
  width: min(420px, 90vw);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.confirmation-modal h3[b-z7wxd1k5mi] {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

.confirmation-modal p[b-z7wxd1k5mi] {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}

.confirmation-modal .modal-actions[b-z7wxd1k5mi] {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

/* Form Styles */
.form-row[b-z7wxd1k5mi] {
  margin-bottom: 24px;
}

.form-group[b-z7wxd1k5mi] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label[b-z7wxd1k5mi] {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  margin: 0;
}

.address-search-wrapper[b-z7wxd1k5mi] {
  position: relative;
  width: 100%;
}

.address-search-wrapper .form-control[b-z7wxd1k5mi] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
  background: #f9fafb;
  height: 48px;
  color: #111827;
}

.address-search-wrapper .form-control:focus[b-z7wxd1k5mi] {
  outline: none;
  border-color: #005ecf;
  background: white;
  box-shadow: 0 0 0 1px #005ecf;
}

.address-search-wrapper .form-control.invalid:focus[b-z7wxd1k5mi] {
  border-color: #ef4444;
  background: white;
  box-shadow: 0 0 0 1px #ef4444;
}

.form-control[b-z7wxd1k5mi] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
  background: white;
  height: 48px;
}

.form-control:focus[b-z7wxd1k5mi] {
  outline: none;
  border-color: #005ecf;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-control[b-z7wxd1k5mi]::placeholder {
  color: #9ca3af;
}

.form-control.invalid[b-z7wxd1k5mi] {
  border-color: #ef4444;
  outline: 1px solid #ef4444;
}

.form-control.invalid:focus[b-z7wxd1k5mi] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.validation-message[b-z7wxd1k5mi] {
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.5rem;
  display: block;
  line-height: 1.4;
  min-height: 1.2rem;
}

.select-group[b-z7wxd1k5mi] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 103px;
}

.state-select[b-z7wxd1k5mi] {
  cursor: pointer;
  color: #9ca3af;
}

.state-select option:not(:first-child)[b-z7wxd1k5mi] {
  color: #374151;
}

/* Buttons */
.btn[b-z7wxd1k5mi] {
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  height: 48px;
  min-width: 92px;
  padding: 12px 20px;
}

.btn-primary[b-z7wxd1k5mi] {
  background: #005ecf;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover:not(:disabled)[b-z7wxd1k5mi] {
  background: #005dcfcb;
}

.btn-primary:disabled[b-z7wxd1k5mi] {
  background: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
}

.btn-primary.btn-loading[b-z7wxd1k5mi] {
  background: #e5e7eb;
  color: #6b7280;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary.btn-loading span:not(.btn-spinner)[b-z7wxd1k5mi] {
  color: #6b7280;
}

.btn-spinner[b-z7wxd1k5mi] {
  width: 16px;
  height: 16px;
  border: 2px solid #9ca3af;
  border-top-color: #6b7280;
  border-radius: 50%;
  animation: btn-spin-b-z7wxd1k5mi 0.8s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes btn-spin-b-z7wxd1k5mi {
  to {
    transform: rotate(360deg);
  }
}

.btn-secondary[b-z7wxd1k5mi] {
  border-radius: 50px;
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-secondary:hover[b-z7wxd1k5mi] {
  background: #f3f4f6;
}

/* Step 2 - Administrator Search */
.step-description[b-z7wxd1k5mi] {
  margin-bottom: 16px;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.search-container[b-z7wxd1k5mi] {
  margin-bottom: 24px;
}

.search-input-wrapper[b-z7wxd1k5mi] {
  position: relative;
  width: 100%;
}

.search-input[b-z7wxd1k5mi] {
  width: 100%;
  padding: 11px 24px;
  border: 0;
  border-radius: 50px;
  font-size: 14px;
  background: white;
  transition: all 0.2s;
  box-shadow: 0px 1px 3px -2px black;
  height: 48px;
}

.search-input:focus[b-z7wxd1k5mi] {
  outline: none;
  border-color: #005ecf;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.search-input[b-z7wxd1k5mi]::placeholder {
  color: #6b7280;
}

.search-icon[b-z7wxd1k5mi] {
  position: absolute;
  right: 5px;
  background-color: #f3f4f6;
  border-radius: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6b7280;
  pointer-events: none;
}

/* Admin Results */
.admin-results[b-z7wxd1k5mi] {
  margin-top: 24px;
}

.admin-results h4[b-z7wxd1k5mi] {
  margin-bottom: 12px;
}

.admin-card[b-z7wxd1k5mi] {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.admin-card:hover[b-z7wxd1k5mi] {
  border-color: #005ecf;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1);
}

.admin-card.selected[b-z7wxd1k5mi] {
  border-color: #005ecf;
  background: #f5f3ff;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.15);
}

.admin-info h4[b-z7wxd1k5mi] {
  margin: 0 0 12px 0;
  font-size: 19px;
  font-weight: 500;
  color: #111827;
}

.admin-details[b-z7wxd1k5mi] {
  display: flex;
  gap: 40px;
  /* height: 60px; */
  width: 70%;
  align-items: center;
  justify-content: space-between;
}

.admin-detail-column[b-z7wxd1k5mi] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-username[b-z7wxd1k5mi] {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.admin-contact[b-z7wxd1k5mi] {
  margin: 0;
  font-size: 14px;
  color: #111827;
}

.no-results[b-z7wxd1k5mi] {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
}

.search-hint[b-z7wxd1k5mi] {
  text-align: center;
  padding: 40px 20px;
  color: #9ca3af;
  font-style: italic;
  margin: 0;
}

/* Step 3 - Confirmation */
.confirmation-section[b-z7wxd1k5mi] {
  border-radius: 8px;
  margin-bottom: 20px;
}

.confirmation-section h3[b-z7wxd1k5mi] {
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 600;
  color: #111827;
}

.confirmation-section h4[b-z7wxd1k5mi] {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.confirmation-field[b-z7wxd1k5mi] {
  margin-bottom: 8px;
}

.confirmation-fields[b-z7wxd1k5mi] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.confirmation-input[b-z7wxd1k5mi] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  height: 60px;
  background: #fff;
  color: #111827;
}

.confirmation-checkbox[b-z7wxd1k5mi] {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.confirmation-checkbox input[type="checkbox"][b-z7wxd1k5mi] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #005ecf;
}

.confirmation-checkbox label[b-z7wxd1k5mi] {
  margin: 0;
  color: #374151;
  font-size: 14px;
  cursor: pointer;
}

/* Confirmation Card - matches admin card design */
.confirmation-card[b-z7wxd1k5mi] {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  cursor: default; /* Not clickable */
  transition: none; /* No hover effects */
  height: auto; /* Auto height for content */
}

.confirmation-card:hover[b-z7wxd1k5mi] {
  border-color: #e5e7eb; /* No color change on hover */
  box-shadow: none; /* No shadow on hover */
}

.confirmation-section h4[b-z7wxd1k5mi] {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

/* Responsive Design */
@media (max-width: 768px) {
  .add-location-modal[b-z7wxd1k5mi] {
    width: 95vw;
    max-height: 95vh;
  }

  .modal-header[b-z7wxd1k5mi],
  .modal-body[b-z7wxd1k5mi],
  .modal-footer[b-z7wxd1k5mi] {
    padding: 14px 24px;
  }

  .address-row[b-z7wxd1k5mi] {
    flex-direction: column;
  }

  .state-select[b-z7wxd1k5mi] {
    width: 100%;
  }

  .search-group[b-z7wxd1k5mi] {
    flex-direction: column;
  }

  .search-btn[b-z7wxd1k5mi] {
    width: 100%;
  }

  .modal-footer[b-z7wxd1k5mi] {
    flex-direction: column-reverse;
  }

  .btn[b-z7wxd1k5mi] {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .add-location-modal[b-z7wxd1k5mi] {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }

  .modal-header[b-z7wxd1k5mi],
  .modal-body[b-z7wxd1k5mi],
  .modal-footer[b-z7wxd1k5mi] {
    padding-left: 16px;
    padding-right: 16px;
  }

  .modal-header h2[b-z7wxd1k5mi] {
    font-size: 20px;
  }
}

/* Address Dropdown Styling */
.address-search-wrapper .address-dropdown[b-z7wxd1k5mi] {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 0;
}

.address-search-wrapper .address-dropdown.show[b-z7wxd1k5mi] {
  display: block !important;
}

.address-dropdown-item[b-z7wxd1k5mi] {
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #f3f4f6;
  min-height: 44px;
}

.address-dropdown-item:last-child[b-z7wxd1k5mi] {
  border-bottom: none;
}

.address-dropdown-item:hover[b-z7wxd1k5mi] {
  background-color: #f9fafb;
}

.address-dropdown-item-icon[b-z7wxd1k5mi] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #6b7280;
}

.address-dropdown-item-icon svg[b-z7wxd1k5mi] {
  width: 100%;
  height: 100%;
}

.address-dropdown-item-text[b-z7wxd1k5mi] {
  flex: 1;
  font-size: 14px;
  color: #111827;
  line-height: 1.5;
  word-wrap: break-word;
}

/* Loading Indicator */
.loading-message-container[b-z7wxd1k5mi] {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.loading-message[b-z7wxd1k5mi] {
  width: 60px;
  height: 60px;
  border: 4px solid #ccc;
  border-top-color: #005ecf;
  border-radius: 50%;
  animation: spin-b-z7wxd1k5mi 1s linear infinite;
}

@keyframes spin-b-z7wxd1k5mi {
  to {
    transform: rotate(360deg);
  }
}

/* No User Card */
.no-user-card[b-z7wxd1k5mi] {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.no-user-message[b-z7wxd1k5mi] {
  font-size: 16px;
  color: #111827;
  margin: 0;
  line-height: 1.5;
}

/* Invitation Section */
.invitation-section[b-z7wxd1k5mi] {
  margin-top: 16px;
}

.checkbox-container[b-z7wxd1k5mi] {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 14px;
  color: #6a7282;
  line-height: 1.43;
  margin-top: 16px;
  height: 32px;
}

.checkbox-container input[type="checkbox"][b-z7wxd1k5mi] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #005ecf;
  margin: 0;
}

.checkbox-label[b-z7wxd1k5mi] {
  flex: 1;
}

.checkmark[b-z7wxd1k5mi] {
  display: none;
}

/* Email Input Section */
.email-input-section[b-z7wxd1k5mi] {
  margin-top: 8px;
}

.email-input[b-z7wxd1k5mi] {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  transition: all 0.2s;
  margin-bottom: 8px;
  height: 44px;
}

.email-input:focus[b-z7wxd1k5mi] {
  outline: none;
  border-color: #005ecf;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.email-input.invalid[b-z7wxd1k5mi] {
  border-color: #ef4444;
}

.email-input.invalid:focus[b-z7wxd1k5mi] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.email-input[b-z7wxd1k5mi]::placeholder {
  color: #6b7280;
}
/* /Components/AddLocationModalSteps/AdministratorSelectionStep.razor.rz.scp.css */
/* Administrator Selection Step - inherits styles from parent AddLocationModal */
.step-description[b-dr96zr46cl] {
  margin-bottom: 16px;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.search-input-wrapper[b-dr96zr46cl] {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  height: 46px;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 8px 8px 8px 16px;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.search-input[b-dr96zr46cl] {
  width: 100%;
  padding: 11px 24px;
  border: 0;
  border-radius: 50px;
  font-size: 14px;
  background: white;
  transition: all 0.2s;
  box-shadow: 0px 1px 3px -2px black;
  height: 48px;
}

.search-input:focus[b-dr96zr46cl] {
  outline: none;
  border-color: #005ecf;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.search-input[b-dr96zr46cl]::placeholder {
  color: #6b7280;
}

.search-icon[b-dr96zr46cl] {
  position: absolute;
  right: 5px;
  background-color: #f3f4f6;
  border-radius: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6b7280;
  pointer-events: none;
}

/* Admin Results */
.admin-results[b-dr96zr46cl] {
  margin-top: 24px;
}

.admin-user-item[b-dr96zr46cl] {
  margin-bottom: 16px;
}

.admin-user-item h4[b-dr96zr46cl] {
  margin-bottom: 12px;
  margin-top: 0;
  pointer-events: none;
}

.admin-card[b-dr96zr46cl] {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
  user-select: none;
}

.admin-card:hover[b-dr96zr46cl] {
  border-color: #005ecf;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1);
}

.admin-card.selected[b-dr96zr46cl] {
  border-color: #005ecf;
  background: #f5f3ff;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.15);
}

.admin-info[b-dr96zr46cl] {
  pointer-events: none;
}

.admin-info h4[b-dr96zr46cl] {
  margin: 0 0 12px 0;
  font-size: 19px;
  font-weight: 500;
  color: #111827;
}

.admin-details[b-dr96zr46cl] {
  display: flex;
  gap: 40px;
  width: 70%;
  align-items: center;
  justify-content: space-between;
}

.admin-detail-column[b-dr96zr46cl] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-username[b-dr96zr46cl] {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.admin-contact[b-dr96zr46cl] {
  margin: 0;
  font-size: 14px;
  color: #111827;
}

.search-hint[b-dr96zr46cl] {
  text-align: center;
  padding: 40px 20px;
  color: #9ca3af;
  font-style: italic;
  margin: 0;
}

/* Loading Indicator */
.loading-message-container[b-dr96zr46cl] {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.loading-message[b-dr96zr46cl] {
  width: 60px;
  height: 60px;
  border: 4px solid #ccc;
  border-top-color: #005ecf;
  border-radius: 50%;
  animation: spin-b-dr96zr46cl 1s linear infinite;
}

@keyframes spin-b-dr96zr46cl {
  to {
    transform: rotate(360deg);
  }
}

/* Existing System Admin Message */
.existing-user-message[b-dr96zr46cl] {
  margin-top: 16px;
  margin-bottom: 16px;
}

.existing-user-alert[b-dr96zr46cl] {
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.alert-icon[b-dr96zr46cl] {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-content[b-dr96zr46cl] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.alert-content strong[b-dr96zr46cl] {
  font-size: 14px;
  font-weight: 600;
  color: #92400e;
}

.alert-details[b-dr96zr46cl] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #78350f;
}

.alert-details span[b-dr96zr46cl] {
  display: block;
}

/* No User Card */
.no-user-card[b-dr96zr46cl] {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.no-user-message[b-dr96zr46cl] {
  font-size: 16px;
  color: #111827;
  margin: 0;
  line-height: 1.5;
}

/* Invitation Section */
.invitation-section[b-dr96zr46cl] {
  margin-top: 16px;
}

.checkbox-container[b-dr96zr46cl] {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 14px;
  color: #6a7282;
  line-height: 1.43;
  margin-top: 16px;
  height: 32px;
}

.checkbox-container input[type="checkbox"][b-dr96zr46cl] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #005ecf;
  margin: 0;
}

.checkbox-label[b-dr96zr46cl] {
  flex: 1;
}

.checkmark[b-dr96zr46cl] {
  display: none;
}

/* Email Input Section */
.email-input-section[b-dr96zr46cl] {
  margin-top: 8px;
}

.email-input[b-dr96zr46cl] {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  transition: all 0.2s;
  margin-bottom: 8px;
  height: 44px;
}

.email-input:focus[b-dr96zr46cl] {
  outline: none;
  border-color: #005ecf;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.email-input.invalid[b-dr96zr46cl] {
  border-color: #ef4444;
}

.email-input.invalid:focus[b-dr96zr46cl] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.email-input[b-dr96zr46cl]::placeholder {
  color: #6b7280;
}

.validation-message[b-dr96zr46cl] {
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.5rem;
  display: block;
  line-height: 1.4;
  min-height: 1.2rem;
}
/* /Components/AddLocationModalSteps/ConfirmationStep.razor.rz.scp.css */
/* Confirmation Step - inherits styles from parent AddLocationModal */
.confirmation-section[b-ysyn1nq807] {
  border-radius: 8px;
  margin-bottom: 20px;
}

.confirmation-section h3[b-ysyn1nq807] {
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 600;
  color: #111827;
}

.confirmation-section h4[b-ysyn1nq807] {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.confirmation-field[b-ysyn1nq807] {
  margin-bottom: 8px;
}

.confirmation-input[b-ysyn1nq807] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  height: 60px;
  background: #fff;
  color: #111827;
}

.confirmation-checkbox[b-ysyn1nq807] {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.confirmation-checkbox input[type="checkbox"][b-ysyn1nq807] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #005ecf;
}

.confirmation-checkbox label[b-ysyn1nq807] {
  margin: 0;
  color: #374151;
  font-size: 14px;
  cursor: pointer;
}

/* Confirmation Card - matches admin card design */
.confirmation-card[b-ysyn1nq807] {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  cursor: default;
  transition: none;
  height: auto;
}

.confirmation-card:hover[b-ysyn1nq807] {
  border-color: #e5e7eb;
  box-shadow: none;
}

.admin-card[b-ysyn1nq807] {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.admin-info[b-ysyn1nq807] {
  display: flex;
  flex-direction: column;
}

.admin-details[b-ysyn1nq807] {
  display: flex;
  gap: 40px;
  width: 70%;
  align-items: center;
  justify-content: space-between;
}

.admin-detail-column[b-ysyn1nq807] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-username[b-ysyn1nq807] {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.admin-contact[b-ysyn1nq807] {
  margin: 0;
  font-size: 14px;
  color: #111827;
}

/* /Components/AddLocationModalSteps/LocationDetailsStep.razor.rz.scp.css */
/* Location Details Step - inherits styles from parent AddLocationModal */
/* Form Styles */
.form-row[b-ioie2plfvv] {
  margin-bottom: 24px;
}

.form-group[b-ioie2plfvv] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label[b-ioie2plfvv] {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  margin: 0;
}

.address-search-wrapper[b-ioie2plfvv] {
  position: relative;
  width: 100%;
}

.address-search-wrapper .form-control[b-ioie2plfvv] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
  background: #fff;
  height: 48px;
  color: #111827;
}

.address-search-wrapper .form-control:focus[b-ioie2plfvv] {
  outline: none;
  border-color: #005ecf;
  background: white;
  box-shadow: 0 0 0 1px #005ecf;
}

.address-search-wrapper .form-control.invalid:focus[b-ioie2plfvv] {
  border-color: #ef4444;
  background: white;
  box-shadow: 0 0 0 1px #ef4444;
}

.form-control[b-ioie2plfvv] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
  background: white;
  height: 48px;
}

.form-control:focus[b-ioie2plfvv] {
  outline: none;
  border-color: #005ecf;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-control[b-ioie2plfvv]::placeholder {
  color: #9ca3af;
}

.form-control.invalid[b-ioie2plfvv] {
  border-color: #ef4444;
  outline: 1px solid #ef4444;
}

.form-control.invalid:focus[b-ioie2plfvv] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.validation-message[b-ioie2plfvv] {
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.5rem;
  display: block;
  line-height: 1.4;
  min-height: 1.2rem;
}

.select-group[b-ioie2plfvv] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 103px;
}

.state-select[b-ioie2plfvv] {
  cursor: pointer;
  color: #9ca3af;
}

.state-select option:not(:first-child)[b-ioie2plfvv] {
  color: #374151;
}

.d-flex[b-ioie2plfvv] {
  display: flex;
}

.gap-16[b-ioie2plfvv] {
  gap: 16px;
}

.flex-1[b-ioie2plfvv] {
  flex: 1;
}

.mt-3[b-ioie2plfvv] {
  margin-top: 12px;
}

/* Address Dropdown Styling */
.address-search-wrapper .address-dropdown[b-ioie2plfvv] {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 0;
}

.address-search-wrapper .address-dropdown.show[b-ioie2plfvv] {
  display: block !important;
}

/* /Components/AddUserModal.razor.rz.scp.css */
.modal-overlay[b-bq5uhu24pj] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.add-user-modal[b-bq5uhu24pj] {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Modal Header - Exact specifications provided */
.modal-header[b-bq5uhu24pj] {
  width: 100%;
  max-width: 1000px;
  height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  /* spacing-xl */
  border-bottom: 1px solid #e5e7eb;
  background: white;
}

.header-left[b-bq5uhu24pj] {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 34px;
  width: 140px;
}

.user-icon[b-bq5uhu24pj] {
  width: 34px;
  height: 34px;
  color: #6b7280;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-header h2[b-bq5uhu24pj] {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  color: #111827;
}

.close-button[b-bq5uhu24pj] {
  background: none;
  border: none;
  cursor: pointer;
  /* padding: 5px; */
  border-radius: 4px;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
}

.close-button:hover[b-bq5uhu24pj] {
  background-color: #f3f4f6;
}

.close-icon[b-bq5uhu24pj] {
  width: 20px;
  height: 20px;
  color: #6b7280;
  stroke-width: 2;
}

/* Modal Body */
.modal-body[b-bq5uhu24pj] {
  padding: 16px 24px;
  flex: 1;
  min-height: 298px;
  overflow-y: auto;
  background: #f9fafb;
  position: relative;
}

/* Search Container */
.search-container[b-bq5uhu24pj] {
  margin-bottom: 24px;
}

.search-input-wrapper[b-bq5uhu24pj] {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  height: 46px;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 8px 8px 8px 16px;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.search-input[b-bq5uhu24pj] {
  width: 100%;
  padding: 11px 24px;
  border: 0;
  border-radius: 50px;
  font-size: 14px;
  background: white;
  transition: all 0.2s;
  box-shadow: 0px 1px 3px -2px black;
  height: 48px;
}

.search-input:focus[b-bq5uhu24pj] {
  outline: none;
  border-color: #005ecf;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.search-input[b-bq5uhu24pj]::placeholder {
  color: #6b7280;
}

.search-icon[b-bq5uhu24pj] {
  position: absolute;
  right: 5px;
  background-color: #f3f4f6;
  border-radius: 50px;
  /* padding: 10px; */
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6b7280;
  pointer-events: none;
}

/* User Card - Matching the image design */
.user-card[b-bq5uhu24pj] {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 19px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.2s;
  height: 100px;
}

.user-card:hover[b-bq5uhu24pj] {
  border-color: #005ecf;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1);
}

.user-card.selected[b-bq5uhu24pj] {
  border-color: #005ecf;
  background: #f5f3ff;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.15);
}

.user-name[b-bq5uhu24pj] {
  font-size: 19px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 12px;
  margin-top: 12px;
}

.user-info[b-bq5uhu24pj] {
  display: flex;
  gap: 40px;
  height: 60px;
  width: 70%;
  align-items: center;
  justify-content: space-between;
}

.user-details[b-bq5uhu24pj] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.user-identifier[b-bq5uhu24pj] {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.user-email[b-bq5uhu24pj] {
  font-size: 14px;
  color: #111827;
}

.user-phone[b-bq5uhu24pj] {
  font-size: 14px;
  color: #111827;
}

/* Existing User Message */
.existing-user-message[b-bq5uhu24pj] {
  margin-top: 16px;
  margin-bottom: 16px;
}

.existing-user-alert[b-bq5uhu24pj] {
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.alert-icon[b-bq5uhu24pj] {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-content[b-bq5uhu24pj] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.alert-content strong[b-bq5uhu24pj] {
  font-size: 14px;
  font-weight: 600;
  color: #92400e;
}

.alert-details[b-bq5uhu24pj] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #78350f;
}

.alert-details span[b-bq5uhu24pj] {
  display: block;
}

/* No User Card - Matching the image design */
.no-user-card[b-bq5uhu24pj] {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.no-user-message[b-bq5uhu24pj] {
  font-size: 16px;
  color: #111827;
  margin: 0;
  line-height: 1.5;
}

/* Invitation Section */

.checkbox-container[b-bq5uhu24pj] {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 14px;
  color: #6a7282;
  line-height: 1.43;
  margin-top: 16px;
  height: 32px;
}

.checkbox-container input[type="checkbox"][b-bq5uhu24pj] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #005ecf;
  margin: 0;
}

.checkbox-label[b-bq5uhu24pj] {
  flex: 1;
}

/* Email Input Section */
.email-input-section[b-bq5uhu24pj] {
  margin-top: 8px;
}

.email-input[b-bq5uhu24pj] {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  transition: all 0.2s;
  margin-bottom: 8px;
  height: 44px;
}

.email-input:focus[b-bq5uhu24pj] {
  outline: none;
  border-color: #005ecf;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.email-input.invalid[b-bq5uhu24pj] {
  border-color: #ef4444;
}

.email-input.invalid:focus[b-bq5uhu24pj] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.email-input[b-bq5uhu24pj]::placeholder {
  color: #6b7280;
}

.validation-message[b-bq5uhu24pj] {
  display: block;
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  margin-bottom: 8px;
}

.info-text[b-bq5uhu24pj] {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

.loading-message-container[b-bq5uhu24pj] {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.loading-message[b-bq5uhu24pj] {
  width: 60px;
  height: 60px;
  border: 4px solid #ccc;
  border-top-color: #005ecf;
  border-radius: 50%;
  animation: spin-b-bq5uhu24pj 1s linear infinite;
}

@keyframes spin-b-bq5uhu24pj {
  to {
    transform: rotate(360deg);
  }
}

/* Modal Footer - Exact specifications provided */
.modal-footer[b-bq5uhu24pj] {
  width: 1000px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0px 21px;
  border-top: 1px solid #e5e7eb;
  background: white;
}

.modal-inner-footer[b-bq5uhu24pj] {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn[b-bq5uhu24pj] {
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  height: 48px;
  min-width: 92px;
}

.btn-primary[b-bq5uhu24pj] {
  background: #005ecf;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover:not(:disabled)[b-bq5uhu24pj] {
  background: #005dcfcb;
}

.btn-primary:disabled[b-bq5uhu24pj] {
  background: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
}

.btn-primary.btn-loading[b-bq5uhu24pj] {
  background: #e5e7eb;
  color: #6b7280;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary.btn-loading span:not(.btn-spinner)[b-bq5uhu24pj] {
  color: #6b7280;
}

.btn-spinner[b-bq5uhu24pj] {
  width: 16px;
  height: 16px;
  border: 2px solid #9ca3af;
  border-top-color: #6b7280;
  border-radius: 50%;
  animation: btn-spin-b-bq5uhu24pj 0.8s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes btn-spin-b-bq5uhu24pj {
  to {
    transform: rotate(360deg);
  }
}

.btn-secondary[b-bq5uhu24pj] {
  border-radius: 50px;
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-secondary:hover[b-bq5uhu24pj] {
  background: #f3f4f6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .add-user-modal[b-bq5uhu24pj] {
    width: 95vw;
    max-height: 95vh;
  }

  .modal-header[b-bq5uhu24pj],
  .modal-footer[b-bq5uhu24pj] {
    width: 100%;
  }

  .modal-header[b-bq5uhu24pj] {
    padding: 20px;
  }

  .modal-footer[b-bq5uhu24pj] {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .add-user-modal[b-bq5uhu24pj] {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }

  .modal-header[b-bq5uhu24pj],
  .modal-body[b-bq5uhu24pj],
  .modal-footer[b-bq5uhu24pj] {
    padding-left: 16px;
    padding-right: 16px;
  }

  .modal-header h2[b-bq5uhu24pj] {
    font-size: 16px;
  }

  .user-info[b-bq5uhu24pj] {
    flex-direction: column;
    gap: 16px;
  }

  .modal-footer[b-bq5uhu24pj] {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .btn[b-bq5uhu24pj] {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .modal-header[b-bq5uhu24pj] {
    height: auto;
    min-height: 68px;
  }

  .modal-footer[b-bq5uhu24pj] {
    height: auto;
    min-height: 80px;
  }
}
/* /Components/ApplicationAccessModal.razor.rz.scp.css */
.modal-overlay[b-39xennxl91] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.application-access-modal[b-39xennxl91] {
    background: white;
    border-radius: 16px;
    width: 500px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Modal Header */
.modal-header[b-39xennxl91] {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #E5E7EB;
    background: white;
}

.header-left[b-39xennxl91] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-icon[b-39xennxl91] {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-header h2[b-39xennxl91] {
    margin: 0;
    font-size: 21px;
    font-weight: 500;
    color: #111827;
}

.close-button[b-39xennxl91] {
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 38px;
}

.close-button:hover[b-39xennxl91] {
    background-color: #F3F4F6;
}

/* Modal Body */
.modal-body[b-39xennxl91] {
    padding: 24px;
    background: #F9FAFB;
}

.access-options[b-39xennxl91] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option[b-39xennxl91] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option:hover[b-39xennxl91] {
    border-color: #D1D5DB;
    background: #F9FAFB;
}

.radio-option.selected[b-39xennxl91] {
    border-color: #4F46E5;
    background: #EEF2FF;
}

.radio-option input[type="radio"][b-39xennxl91] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #4F46E5;
}

.radio-label[b-39xennxl91] {
    flex: 1;
    font-size: 16px;
    color: #111827;
    font-weight: 500;
}

.change-button[b-39xennxl91] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #F3F4F6;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.change-button:hover[b-39xennxl91] {
    background: #E5E7EB;
    border-color: #9CA3AF;
}

.change-button svg[b-39xennxl91] {
    width: 16px;
    height: 16px;
}

/* Modal Footer */
.modal-footer[b-39xennxl91] {
    padding: 20px 24px;
    border-top: 1px solid #E5E7EB;
    background: white;
}

.modal-inner-footer[b-39xennxl91] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn[b-39xennxl91] {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    min-width: 100px;
}

.btn:disabled[b-39xennxl91] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary[b-39xennxl91] {
    background: #F3F4F6;
    color: #374151;
}

.btn-secondary:hover:not(:disabled)[b-39xennxl91] {
    background: #E5E7EB;
}

.btn-primary[b-39xennxl91] {
    background: #4F46E5;
    color: white;
}

.btn-primary:hover:not(:disabled)[b-39xennxl91] {
    background: #4338CA;
}

/* Date Picker Modal */
.date-picker-overlay[b-39xennxl91] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3100;
}

.date-picker-modal[b-39xennxl91] {
    background: white;
    border-radius: 16px;
    width: 400px;
    max-width: 90vw;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.date-picker-header[b-39xennxl91] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #E5E7EB;
}

.date-picker-header h3[b-39xennxl91] {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #111827;
}

.date-picker-body[b-39xennxl91] {
    padding: 24px;
}

.date-input[b-39xennxl91] {
    width: 100%;
    padding: 12px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
    color: #111827;
}

.date-input:focus[b-39xennxl91] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.date-picker-footer[b-39xennxl91] {
    padding: 20px 24px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

@media (max-width: 600px) {
    .application-access-modal[b-39xennxl91] {
        width: 95vw;
    }

    .modal-header[b-39xennxl91],
    .modal-body[b-39xennxl91],
    .modal-footer[b-39xennxl91] {
        padding: 16px;
    }

    .modal-inner-footer[b-39xennxl91] {
        flex-direction: column;
    }

    .btn[b-39xennxl91] {
        width: 100%;
    }
}

/* /Components/DebouncedSearchBox.razor.rz.scp.css */
.debounced-search-container[b-kzjc0z3nnv] {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.debounced-search-input[b-kzjc0z3nnv] {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #374151;
    padding: 8px 16px;
}

.debounced-search-input:focus[b-kzjc0z3nnv] {
    outline: none;
}

.debounced-search-input[b-kzjc0z3nnv]::placeholder {
    color: #9CA3AF;
}

.debounced-search-input:disabled[b-kzjc0z3nnv] {
    opacity: 0.6;
    cursor: not-allowed;
}

.debounced-search-icon-wrapper[b-kzjc0z3nnv] {
    position: absolute;
    right: 4px;
    width: 38px;
    height: 38px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.debounced-search-icon-wrapper svg[b-kzjc0z3nnv] {
    width: 18px;
    height: 18px;
    color: #6B7280;
}

/* When icon is shown, add padding to input */
.debounced-search-input.with-icon[b-kzjc0z3nnv] {
    padding-right: 50px;
}

/* /Components/DeleteAdministratorModal.razor.rz.scp.css */
.modal-overlay[b-xlqqhkmtjg] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.delete-user-modal[b-xlqqhkmtjg] {
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 16px;
    background: #F9FAFB;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Modal Header */
.modal-header[b-xlqqhkmtjg] {
    width: 100%;
    max-width: 1000px;
    height: 68px;
    min-height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #E5E7EB;
    background: white;
    flex-shrink: 0;
}

.header-left[b-xlqqhkmtjg] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-left svg[b-xlqqhkmtjg] {
    width: 34px;
    height: 34px;
    display: block;
    flex-shrink: 0;
}

.modal-header h2[b-xlqqhkmtjg] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.close-button[b-xlqqhkmtjg] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover[b-xlqqhkmtjg] {
    background-color: #F3F4F6;
}

.close-icon[b-xlqqhkmtjg] {
    width: 40px;
    height: 40px;
    display: block;
    object-fit: contain;
}

/* Modal Body */
.modal-body[b-xlqqhkmtjg] {
    width: 100%;
    max-width: 952px;
    min-height: 196px;
    border-radius: 8px;
    gap: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    flex: 1;
    overflow-y: auto;
}

/* Access Information */
.access-info[b-xlqqhkmtjg] {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid var(--Colors-Border-border-secondary, #E9EAEB);
}

.access-message[b-xlqqhkmtjg] {
    font-size: 14px;
    color: #111827;
    line-height: 1.5;
    margin-bottom: 16px;
}

.access-message strong[b-xlqqhkmtjg] {
    font-weight: 600;
    color: #111827;
}

/* Modal Footer */
.modal-footer[b-xlqqhkmtjg] {
    width: 100%;
    height: 80px;
    min-height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid #E5E7EB;
    background: #F9FAFB;
    flex-shrink: 0;
}

/* Buttons */
.btn[b-xlqqhkmtjg] {
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #D1D5DB;
    transition: all 0.2s;
    min-width: 120px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-danger[b-xlqqhkmtjg] {
    background: #DC2626;
    color: white;
    border: 1px solid #DC2626;
}

.btn-danger:hover:not(:disabled)[b-xlqqhkmtjg] {
    background: #B91C1C;
    border-color: #B91C1C;
}

.btn-danger:disabled[b-xlqqhkmtjg] {
    background: #E5E7EB;
    color: #9CA3AF;
    border-color: #E5E7EB;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-secondary[b-xlqqhkmtjg] {
    background: white;
    color: #374151;
    border: 1px solid #D1D5DB;
}

.btn-secondary:hover[b-xlqqhkmtjg] {
    background: #F9FAFB;
    border-color: #9CA3AF;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .delete-user-modal[b-xlqqhkmtjg] {
        width: 95vw;
        max-height: 95vh;
    }

    .modal-body[b-xlqqhkmtjg] {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .delete-user-modal[b-xlqqhkmtjg] {
        width: 95vw;
        max-height: 95vh;
        border-radius: 12px;
    }

    .modal-header[b-xlqqhkmtjg] {
        padding: 16px;
        height: auto;
        min-height: 60px;
    }

    .modal-body[b-xlqqhkmtjg] {
        padding: 16px;
        max-width: 100%;
    }

    .modal-footer[b-xlqqhkmtjg] {
        padding: 16px;
        height: auto;
        min-height: 70px;
        flex-direction: column-reverse;
        gap: 12px;
    }

    .btn[b-xlqqhkmtjg] {
        width: 100%;
        min-width: auto;
        height: 44px;
        border-radius: 22px;
    }

    .header-left svg[b-xlqqhkmtjg] {
        width: 28px;
        height: 28px;
    }

    .modal-header h2[b-xlqqhkmtjg] {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .delete-user-modal[b-xlqqhkmtjg] {
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-header[b-xlqqhkmtjg] {
        padding: 12px 16px;
        min-height: 50px;
    }

    .modal-body[b-xlqqhkmtjg] {
        padding: 12px 16px;
    }

    .modal-footer[b-xlqqhkmtjg] {
        padding: 12px 16px;
        min-height: 60px;
    }

    .modal-header h2[b-xlqqhkmtjg] {
        font-size: 14px;
    }

    .header-left svg[b-xlqqhkmtjg] {
        width: 24px;
        height: 24px;
    }

    .btn[b-xlqqhkmtjg] {
        padding: 8px 16px;
        font-size: 13px;
        height: 40px;
        border-radius: 20px;
    }
}


/* /Components/DeleteApplicationModal.razor.rz.scp.css */
.modal-overlay[b-ultilpg7ly] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn-b-ultilpg7ly 0.2s ease-in-out;
}

@keyframes fadeIn-b-ultilpg7ly {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-header h2[b-ultilpg7ly] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.header-left[b-ultilpg7ly] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-left svg[b-ultilpg7ly] {
    width: 34px;
    height: 34px;
    display: block;
    flex-shrink: 0;
}


.modal-container[b-ultilpg7ly] {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: slideIn-b-ultilpg7ly 0.3s ease-out;
}

@keyframes slideIn-b-ultilpg7ly {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header[b-ultilpg7ly] {
    position: relative;
    padding: 17px 16px;
    height: 68px;
    border-bottom: none;
}

.modal-header-svg[b-ultilpg7ly] {
    width: 100%;
    height: 68px;
    display: block;
}

.close-btn[b-ultilpg7ly] {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: color 0.2s;
    z-index: 10;
}

.close-btn:hover[b-ultilpg7ly] {
    color: #111827;
}

.close-btn svg[b-ultilpg7ly] {
    width: 20px;
    height: 20px;
}

.modal-body[b-ultilpg7ly] {
    padding: 20px 24px 0 24px;
    background: #F9FAFB;
    min-height: 298px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.close-button[b-ultilpg7ly] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 40px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover[b-ultilpg7ly] {
    background-color: #F3F4F6;
}

.message-box[b-ultilpg7ly] {
    max-width: 952px;
    width: 100%;
    height: 78px;
    padding-top: 18px; /* spacing-lg */
    padding-right: 16px; /* spacing-3xl */
    padding-bottom: 18px; /* spacing-lg */
    padding-left: 24px; /* spacing-3xl */
    gap: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px; /* Corner/Small */
    display: flex;
    align-items: center;
    background: var(--Colors-Background-bg-primary, #FFFFFF);
    box-sizing: border-box;
}

.message-list[b-ultilpg7ly] { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    width: 100%;
    align-items: center;
}

.app-icon[b-ultilpg7ly] { flex-shrink: 0; }

.app-icon svg[b-ultilpg7ly] { width: 36px; height: 36px; }

.message-content[b-ultilpg7ly] { flex: 1; }

.remove-icon[b-ultilpg7ly] {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-icon img[b-ultilpg7ly] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.remove-icon img:hover[b-ultilpg7ly] {
    opacity: 0.7;
}

.primary-message[b-ultilpg7ly] {
    margin: 0 0 6px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #000;
}

.primary-message strong[b-ultilpg7ly] { font-weight: 600; color: #111827; }

.secondary-message[b-ultilpg7ly] { margin: 0; font-size: 12px; color: #6b7280; }

.app-list[b-ultilpg7ly] {
    margin: 6px 0 8px 0;
    padding-left: 18px;
    color: #374151;
    font-size: 14px;
}

.app-list li[b-ultilpg7ly] { margin: 2px 0; }

.modal-footer[b-ultilpg7ly] {
    padding: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn-cancel[b-ultilpg7ly],
.btn-remove[b-ultilpg7ly] {
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    margin: 0px;
    border-radius: 100px;
}

.btn-cancel[b-ultilpg7ly] {
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-cancel:hover[b-ultilpg7ly] {
    background: #f9fafb;
}

.btn-remove[b-ultilpg7ly] {
    background: #dc2626;
    color: white;
}

.btn-remove:hover[b-ultilpg7ly] {
    background: #b91c1c;
}

.btn-remove:active[b-ultilpg7ly] {
    transform: scale(0.98);
}

.btn-cancel:active[b-ultilpg7ly] {
    transform: scale(0.98);
}

/* Responsive adjustments for the card */
@media (max-width: 1000px) {
    .message-box[b-ultilpg7ly] {
        width: 100%;
        max-width: 952px;
    }
}

@media (max-width: 768px) {
    .message-box[b-ultilpg7ly] {
        padding-left: 16px;
        padding-right: 16px;
        height: auto;
        min-height: 78px;
    }
    
    .modal-body[b-ultilpg7ly] {
        padding: 16px;
    }
}
/* /Components/DeleteStoreModal.razor.rz.scp.css */
.modal-overlay[b-athoai4a08] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.delete-store-modal[b-athoai4a08] {
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 16px;
    background: #F9FAFB;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Modal Header */
.modal-header[b-athoai4a08] {
    width: 100%;
    max-width: 1000px;
    height: 68px;
    min-height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #E5E7EB;
    background: white;
    flex-shrink: 0;
}

.header-left[b-athoai4a08] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-left svg[b-athoai4a08] {
    width: 34px;
    height: 34px;
    display: block;
    flex-shrink: 0;
}

.modal-header h2[b-athoai4a08] {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    color: #111827;
}

.close-button[b-athoai4a08] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover[b-athoai4a08] {
    background-color: #F3F4F6;
}

.close-icon[b-athoai4a08] {
    width: 40px;
    height: 40px;
    display: block;
    object-fit: contain;
}

/* Modal Body */
.modal-body[b-athoai4a08] {
    width: 100%;
    max-width: 952px;
    min-height: 196px;
    border-radius: 8px;
    gap: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    flex: 1;
    overflow-y: auto;
}

/* Step Description */
.step-description[b-athoai4a08] {
    margin-bottom: 8px;
    color: #111827;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

/* Store List */
.store-list[b-athoai4a08] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-card[b-athoai4a08] {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.store-card:hover[b-athoai4a08] {
    border-color: #DC2626;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
}

.store-card.selected[b-athoai4a08] {
    border-color: #DC2626;
    background: #FEF2F2;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
}

.store-info[b-athoai4a08] {
    display: flex;
    flex-direction: column;
}

.store-name[b-athoai4a08] {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.store-address[b-athoai4a08] {
    margin: 0;
    font-size: 14px;
    color: #6B7280;
}

.no-stores[b-athoai4a08],
.no-store[b-athoai4a08] {
    text-align: center;
    padding: 40px 20px;
    color: #6B7280;
    font-style: italic;
}

/* Modal Footer */
.modal-footer[b-athoai4a08] {
    width: 100%;
    height: 80px;
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid #E5E7EB;
    background: #F9FAFB;
    flex-shrink: 0;
}

.modal-footer-left[b-athoai4a08] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-footer-right[b-athoai4a08] {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.btn[b-athoai4a08] {
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #D1D5DB;
    transition: all 0.2s;
    min-width: 120px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-danger[b-athoai4a08] {
    background: #DC2626;
    color: white;
    border: 1px solid #DC2626;
}

.btn-danger:hover:not(:disabled)[b-athoai4a08] {
    background: #B91C1C;
    border-color: #B91C1C;
}

.btn-danger:disabled[b-athoai4a08] {
    background: #E5E7EB;
    color: #9CA3AF;
    border-color: #E5E7EB;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-secondary[b-athoai4a08] {
    background: white;
    color: #374151;
    border: 1px solid #D1D5DB;
}

.btn-secondary:hover[b-athoai4a08] {
    background: #F9FAFB;
    border-color: #9CA3AF;
}

/* Confirmation Checkbox */
.confirmation-checkbox[b-athoai4a08] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.confirmation-checkbox input[type="checkbox"][b-athoai4a08] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #DC2626;
}

.confirmation-checkbox label[b-athoai4a08] {
    margin: 0;
    color: #374151;
    font-size: 14px;
    cursor: pointer;
}

/* Loading Button */
.btn-loading[b-athoai4a08] {
    position: relative;
    pointer-events: none;
}

.btn-spinner[b-athoai4a08] {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-athoai4a08 0.6s linear infinite;
    margin-right: 8px;
}

@keyframes spin-b-athoai4a08 {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .delete-store-modal[b-athoai4a08] {
        width: 95vw;
        max-height: 95vh;
    }

    .modal-body[b-athoai4a08] {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .delete-store-modal[b-athoai4a08] {
        width: 95vw;
        max-height: 95vh;
        border-radius: 12px;
    }

    .modal-header[b-athoai4a08] {
        padding: 16px;
        height: auto;
        min-height: 60px;
    }

    .modal-body[b-athoai4a08] {
        padding: 16px;
        max-width: 100%;
    }

    .modal-footer[b-athoai4a08] {
        padding: 16px;
        height: auto;
        min-height: 70px;
        flex-direction: column-reverse;
        gap: 12px;
    }

    .modal-footer-left[b-athoai4a08],
    .modal-footer-right[b-athoai4a08] {
        width: 100%;
        justify-content: center;
    }

    .btn[b-athoai4a08] {
        width: 100%;
        min-width: auto;
        height: 44px;
        border-radius: 22px;
    }

    .header-left svg[b-athoai4a08] {
        width: 28px;
        height: 28px;
    }

    .modal-header h2[b-athoai4a08] {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .delete-store-modal[b-athoai4a08] {
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-header[b-athoai4a08] {
        padding: 12px 16px;
        min-height: 50px;
    }

    .modal-body[b-athoai4a08] {
        padding: 12px 16px;
    }

    .modal-footer[b-athoai4a08] {
        padding: 12px 16px;
        min-height: 60px;
    }

    .modal-header h2[b-athoai4a08] {
        font-size: 14px;
    }

    .header-left svg[b-athoai4a08] {
        width: 24px;
        height: 24px;
    }

    .btn[b-athoai4a08] {
        padding: 8px 16px;
        font-size: 13px;
        height: 40px;
        border-radius: 20px;
    }
}
/* /Components/DeleteUserModal.razor.rz.scp.css */
.modal-overlay[b-tanlf4lx3l] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.delete-user-modal[b-tanlf4lx3l] {
    width: 100%;
    /* height: 446px; */
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 16px;
    background: #F9FAFB;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Modal Header */
.modal-header[b-tanlf4lx3l] {
    width: 100%;
    max-width: 1000px;
    height: 68px;
    min-height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #E5E7EB;
    background: white;
    flex-shrink: 0;
}

.header-left[b-tanlf4lx3l] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-left svg[b-tanlf4lx3l] {
    width: 34px;
    height: 34px;
    display: block;
    flex-shrink: 0;
}

.modal-header h2[b-tanlf4lx3l] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.close-button[b-tanlf4lx3l] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button:hover[b-tanlf4lx3l] {
    background-color: #F3F4F6;
}

.close-icon[b-tanlf4lx3l] {
    width: 40px;
    height: 40px;
    display: block;
    object-fit: contain;
}

/* Modal Body */
.modal-body[b-tanlf4lx3l] {
    width: 100%;
    max-width: 952px;
    min-height: 196px;
    border-radius: 8px;
    gap: 16px;
    padding: 16px;
    /* border: 1px solid #E5E7EB; */
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    flex: 1;
    overflow-y: auto;
}

/* Search Container */
.search-container[b-tanlf4lx3l] {
    margin-bottom: 0;
}

.search-input-wrapper[b-tanlf4lx3l] {
    position: relative;
    width: 100%;
}

.search-input[b-tanlf4lx3l] {
    width: 100%;
    max-width: 958px;
    height: 52px;
    border-radius: 25px;
    gap: 12px;
    padding: 8px 60px 8px 24px;
    border: none;
    font-size: 14px;
    background: #FFFFFF;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-input:focus[b-tanlf4lx3l] {
    outline: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.search-input[b-tanlf4lx3l]::placeholder {
    color: #9CA3AF;
}

.search-icon[b-tanlf4lx3l] {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    color: #6B7280;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    border-radius: 50%;
}

.search-icon svg[b-tanlf4lx3l] {
    width: 20px;
    height: 20px;
    display: block;
}

/* Access Information */
.access-info[b-tanlf4lx3l] {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid var(--Colors-Border-border-secondary, #E9EAEB)
}

.access-message[b-tanlf4lx3l] {
    font-size: 14px;
    color: #111827;
    line-height: 1.5;
    margin-bottom: 16px;
}

.access-message strong[b-tanlf4lx3l] {
    font-weight: 600;
    color: #111827;
}

.remaining-access[b-tanlf4lx3l] {
    font-size: 14px;
    color: #111827;
    line-height: 1.5;
    margin-bottom: 20px;
}

.remaining-access .dotted-underline[b-tanlf4lx3l] {
    text-decoration: underline;
    text-decoration-style: dotted;
}

.location-list[b-tanlf4lx3l] {
    margin: 8px 0 0 0;
    padding-left: 20px;
    list-style-type: disc;
}

.location-list li[b-tanlf4lx3l] {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 4px;
}

/* Checkbox Section */
.checkbox-section[b-tanlf4lx3l] {
    margin-top: 20px;
}

.checkbox-container[b-tanlf4lx3l] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"][b-tanlf4lx3l] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #DC2626;
    margin: 0;
    flex-shrink: 0;
}

.checkbox-label[b-tanlf4lx3l] {
    flex: 1;
    font-weight: 500;
    color: #111827;
}

/* Modal Footer */
.modal-footer[b-tanlf4lx3l] {
    width: 100%;
    height: 80px;
    min-height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid #E5E7EB;
    background: #F9FAFB;
    flex-shrink: 0;
}

/* Buttons */
.btn[b-tanlf4lx3l] {
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #D1D5DB;
    transition: all 0.2s;
    min-width: 120px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-danger[b-tanlf4lx3l] {
    background: #DC2626;
    color: white;
    border: 1px solid #DC2626;
}

.btn-danger:hover:not(:disabled)[b-tanlf4lx3l] {
    background: #B91C1C;
    border-color: #B91C1C;
}

.btn-danger:disabled[b-tanlf4lx3l] {
    background: #E5E7EB;
    color: #9CA3AF;
    border-color: #E5E7EB;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-secondary[b-tanlf4lx3l] {
    background: white;
    color: #374151;
    border: 1px solid #D1D5DB;
}

.btn-secondary:hover[b-tanlf4lx3l] {
    background: #F9FAFB;
    border-color: #9CA3AF;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .delete-user-modal[b-tanlf4lx3l] {
        width: 95vw;
        max-height: 95vh;
    }

    .modal-body[b-tanlf4lx3l] {
        max-width: 90%;
    }

    .search-input[b-tanlf4lx3l] {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .delete-user-modal[b-tanlf4lx3l] {
        width: 95vw;
        max-height: 95vh;
        border-radius: 12px;
    }

    .modal-header[b-tanlf4lx3l] {
        padding: 16px;
        height: auto;
        min-height: 60px;
    }

    .modal-body[b-tanlf4lx3l] {
        padding: 16px;
        max-width: 100%;
    }

    .search-input[b-tanlf4lx3l] {
        height: 48px;
        padding: 6px 50px 6px 20px;
        border-radius: 24px;
    }

    .search-icon[b-tanlf4lx3l] {
        width: 36px;
        height: 36px;
        right: 12px;
    }

    .search-icon svg[b-tanlf4lx3l] {
        width: 18px;
        height: 18px;
    }

    .modal-footer[b-tanlf4lx3l] {
        padding: 16px;
        height: auto;
        min-height: 70px;
        flex-direction: column-reverse;
        gap: 12px;
    }

    .btn[b-tanlf4lx3l] {
        width: 100%;
        min-width: auto;
        height: 44px;
        border-radius: 22px;
    }

    .header-left svg[b-tanlf4lx3l] {
        width: 28px;
        height: 28px;
    }

    .modal-header h2[b-tanlf4lx3l] {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .delete-user-modal[b-tanlf4lx3l] {
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-header[b-tanlf4lx3l] {
        padding: 12px 16px;
        min-height: 50px;
    }

    .modal-body[b-tanlf4lx3l] {
        padding: 12px 16px;
    }

    .modal-footer[b-tanlf4lx3l] {
        padding: 12px 16px;
        min-height: 60px;
    }

    .modal-header h2[b-tanlf4lx3l] {
        font-size: 14px;
    }

    .search-input[b-tanlf4lx3l] {
        height: 44px;
        padding: 4px 40px 4px 16px;
        font-size: 13px;
        border-radius: 22px;
    }

    .search-icon[b-tanlf4lx3l] {
        width: 32px;
        height: 32px;
        right: 8px;
    }

    .search-icon svg[b-tanlf4lx3l] {
        width: 16px;
        height: 16px;
    }

    .header-left svg[b-tanlf4lx3l] {
        width: 24px;
        height: 24px;
    }

    .btn[b-tanlf4lx3l] {
        padding: 8px 16px;
        font-size: 13px;
        height: 40px;
        border-radius: 20px;
    }
}
/* /Components/FullPageLoader.razor.rz.scp.css */
.full-page-loader[b-f76xtdlryz] {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--splash-bg, #1367e6);
    color: var(--text-on-brand, #ffffff);
    text-align: center;
    z-index: 10000;
}

.full-page-loader .brand-lockup[b-f76xtdlryz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pop-b-f76xtdlryz 300ms ease-out both;
}

.brand-name[b-f76xtdlryz]{
    margin-top: 30px;
    font-size: 16px;
    letter-spacing: 1px;
}

.full-page-loader .logo-wrap[b-f76xtdlryz] {
    width: auto;
    height: auto;
    display: grid;
    place-items: center;
}

.full-page-loader .logo-wrap svg[b-f76xtdlryz],
.full-page-loader .logo-wrap img[b-f76xtdlryz] {
    width: 178px;
    height: auto;
}

.full-page-loader .progress-bar[b-f76xtdlryz] {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.full-page-loader .progress-bar > span[b-f76xtdlryz] {
    display: block;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff);
    animation: sweep-b-f76xtdlryz 1400ms ease-in-out infinite;
}

.full-page-loader__text[b-f76xtdlryz] {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

@keyframes sweep-b-f76xtdlryz {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(40%);
    }
    100% {
        transform: translateX(120%);
    }
}

@keyframes pop-b-f76xtdlryz {
    0% {
        transform: scale(0.92);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* /Components/LocationCard.razor.rz.scp.css */
.location-card[b-b7bnenvtcq] {
    display: flex;
    align-items: center;
    padding: 12px 0px;
    min-height: 79px;
    border-bottom: 1px solid #EFF1F6;
    transition: all 0.2s ease;
    cursor: pointer;
    background-color: var(--card-bg-color, #fff);
}

.location-card:hover[b-b7bnenvtcq] {
    background-color: #F9FAFB !important;
}


.card-profile-container[b-b7bnenvtcq] {
    display: flex;
    flex: 2;
    align-items: center;
    gap: 64px;
}

.text-red[b-b7bnenvtcq] {
    color: #DC2626 !important;
}

.card-checkbox[b-b7bnenvtcq] {
    margin-right: 16px;
}

.checkbox-input[b-b7bnenvtcq] {
    width: 18px;
    height: 18px;
    border: 2px solid #D1D5DB;
    border-radius: 2px;
    background-color: transparent;
    cursor: pointer;
    appearance: none;
}

.checkbox-input:checked[b-b7bnenvtcq]::after {
    content: "";
    position: relative;
    left: 4px;
    top: -7px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: inline-block;
}

.checkbox-input:checked[b-b7bnenvtcq] {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.card-location-name-container[b-b7bnenvtcq] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-location-name[b-b7bnenvtcq] {
    height: 24px;
    font-size: 16px;
    font-weight: 500;
    color: #181D27;
    line-height: 1.5;
    min-width: 200px;
}

.card-address[b-b7bnenvtcq] {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    margin-right: 16px;
    color: #6B7280;
}

.card-profile[b-b7bnenvtcq] {
    margin-right: 16px;
    min-width: 100px;

}

.profile-avatar[b-b7bnenvtcq] {
    padding: 6px 12px;
    border-radius: 30px;
    background-color: #F3F4F6;
    color: #42474E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    height: 32px;
    font-weight: 500;
    max-width: fit-content;
    border: 1px solid #E5E7EB
}

.card-email[b-b7bnenvtcq] {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    margin-right: 16px;
    color: #6B7280;
}

.card-arrow[b-b7bnenvtcq] {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* /Components/LocationModalHeader.razor.rz.scp.css */
.location-modal-header[b-qtadwnkiu5] {
    width: 100%;
    height: 80px;
    background: #ffffff;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    padding: 0 24px;
    position: relative;
}

.header-content[b-qtadwnkiu5] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.header-left[b-qtadwnkiu5] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-left  h2[b-qtadwnkiu5] {
    font-size: 24px;
}

.location-icon[b-qtadwnkiu5] {
    width: 24px;
    height: 24px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon svg[b-qtadwnkiu5] {
    width: 100%;
    height: 100%;
}

h2[b-qtadwnkiu5] {
    font-size: 24px;
    font-weight: 600;
    color: #181D27;
    margin: 0;
    line-height: 1.2;
}

.close-button[b-qtadwnkiu5] {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #6B7280;
}

.close-button:hover[b-qtadwnkiu5] {
    background-color: #F3F4F6;
    color: #374151;
}

.close-button:active[b-qtadwnkiu5] {
    background-color: #E5E7EB;
    transform: scale(0.95);
}

.close-button svg[b-qtadwnkiu5] {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-modal-header[b-qtadwnkiu5] {
        height: 60px;
        padding: 0 16px;
    }
    
    h2[b-qtadwnkiu5] {
        font-size: 20px;
    }
    
    .location-icon[b-qtadwnkiu5] {
        width: 20px;
        height: 20px;
    }
    
    .close-button[b-qtadwnkiu5] {
        padding: 6px;
    }
    
    .close-button svg[b-qtadwnkiu5] {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .location-modal-header[b-qtadwnkiu5] {
        height: 56px;
        padding: 0 12px;
    }
    
    h2[b-qtadwnkiu5] {
        font-size: 18px;
    }
    
    .header-left[b-qtadwnkiu5] {
        gap: 8px;
    }
    
    .location-icon[b-qtadwnkiu5] {
        width: 18px;
        height: 18px;
    }
    
    .close-button[b-qtadwnkiu5] {
        padding: 4px;
    }
    
    .close-button svg[b-qtadwnkiu5] {
        width: 16px;
        height: 16px;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .location-icon[b-qtadwnkiu5] {
        width: 28px;
        height: 28px;
    }
}
/* /Components/LocationsModal.razor.rz.scp.css */
.modal-overlay[b-qtk8lflzcy] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.locations-modal[b-qtk8lflzcy] {
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 1000px;
    justify-content: space-between;
    opacity: 1;
    border-bottom-width: 1px;
    padding:0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-height: 90vh;
    overflow: hidden;
}

.locations-column[b-qtk8lflzcy] {
    padding: 0px 24px 20px 24px;
    background-color: #F9FAFB;
}

/* Responsive Design */
@media (max-width: 768px) {
    .locations-modal[b-qtk8lflzcy] {
        width: 95%;
        max-height: 85vh;
        margin: 20px;
    }
    
    .locations-column[b-qtk8lflzcy] {
        height: 50vh;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .locations-modal[b-qtk8lflzcy] {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    
    .locations-column[b-qtk8lflzcy] {
        height: calc(100vh - 120px);
        padding: 12px;
    }
}

.search-section[b-qtk8lflzcy] {
    padding: 20px 24px;
    background: #f9fafb;
}

@media (max-width: 768px) {
    .search-section[b-qtk8lflzcy] {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .search-section[b-qtk8lflzcy] {
        padding: 8px 12px;
    }
}

.search-container[b-qtk8lflzcy] {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 52px;
    background: #ffffff;
    border-radius: 25px;
    padding-left: 24px;
    padding-right: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid transparent;
    max-width: 100%;
}

.search-label[b-qtk8lflzcy] {
    font-size: 16px;
    font-weight: 400;
    color: #6B7280;
    margin-right: 16px;
    white-space: nowrap;
}

.search-input[b-qtk8lflzcy] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #374151;
    padding: 0;
    margin-right: 16px;
}

.search-input[b-qtk8lflzcy]::placeholder {
    color: #9ca3af;
}

.search-icon[b-qtk8lflzcy] {
    width: 38px;
    height: 38px;
    color: #6B7280;
    background: #F3F4F6;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-body[b-qtk8lflzcy] {
    flex: 1;
    padding: 0;
    overflow-y: auto;
    height: 80vh;
}

@media (max-width: 768px) {
    .modal-body[b-qtk8lflzcy] {
        height: 70vh;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .modal-body[b-qtk8lflzcy] {
        height: calc(100vh - 140px);
        padding: 0;
    }
}

.content-columns[b-qtk8lflzcy] {
    height: 100%;
}

.column-header[b-qtk8lflzcy] {
    margin-bottom: 16px;
}

.column-header h3[b-qtk8lflzcy] {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.locations-list[b-qtk8lflzcy],
.contacts-list[b-qtk8lflzcy] {
    display: flex;
    flex-direction: column;
    gap: 0px; /* LocationCard handles its own spacing */
}

.location-item[b-qtk8lflzcy],
.contact-item[b-qtk8lflzcy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    border: 1px solid transparent;
}

.location-item:hover[b-qtk8lflzcy],
.contact-item:hover[b-qtk8lflzcy] {
    background-color: #f9fafb;
}

.location-item.selected[b-qtk8lflzcy],
.contact-item.selected[b-qtk8lflzcy] {
    background-color: #eff6ff;
    border-color: #3b82f6;
}

.location-info[b-qtk8lflzcy] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.location-name[b-qtk8lflzcy] {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.location-address[b-qtk8lflzcy] {
    font-size: 12px;
    color: #6b7280;
}

.location-badge[b-qtk8lflzcy] {
    background-color: #f3f4f6;
    color: #374151;
    font-size: 10px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
}

.contact-item[b-qtk8lflzcy] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-badge[b-qtk8lflzcy] {
    background-color: #f3f4f6;
    color: #374151;
    font-size: 10px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-info[b-qtk8lflzcy] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-name[b-qtk8lflzcy] {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.contact-email[b-qtk8lflzcy] {
    font-size: 12px;
    color: #6b7280;
}

.contact-arrow[b-qtk8lflzcy] {
    width: 16px;
    height: 16px;
    color: #6b7280;
    flex-shrink: 0;
}

.modal-footer[b-qtk8lflzcy] {
    padding: 16px 24px 24px 24px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #e5e7eb;
}

.btn[b-qtk8lflzcy] {
    padding: 12px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.btn-secondary[b-qtk8lflzcy] {
    color: #000;
    border-color: #d1d5db;
    background-color: #FFF;
}

.btn-secondary:hover[b-qtk8lflzcy] {
    background-color: #e5e7eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .locations-modal[b-qtk8lflzcy] {
        width: 95%;
        max-height: 90vh;
    }
    
    .content-columns[b-qtk8lflzcy] {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .modal-header[b-qtk8lflzcy],
    .search-section[b-qtk8lflzcy],
    .modal-body[b-qtk8lflzcy],
    .modal-footer[b-qtk8lflzcy] {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .locations-modal[b-qtk8lflzcy] {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .modal-header h2[b-qtk8lflzcy] {
        font-size: 18px;
    }
    
    .location-item[b-qtk8lflzcy],
    .contact-item[b-qtk8lflzcy] {
        padding: 8px;
    }
}

.loading-message[b-qtk8lflzcy],
.no-locations-message[b-qtk8lflzcy] {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    padding: 20px;
}

.loading-message[b-qtk8lflzcy] {
    color: #3b82f6;
    font-weight: 500;
}

.group-header[b-qtk8lflzcy] {
    padding: 16px 0 8px 0;
    margin-top: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.group-header:first-child[b-qtk8lflzcy] {
    margin-top: 0;
}

.group-header h3[b-qtk8lflzcy] {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    padding: 0;
}

.group-header-clickable[b-qtk8lflzcy] {
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    border-radius: 8px;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: -8px;
    margin-right: -8px;
    background-color: #f3f4f6;
}

.group-header-clickable:hover[b-qtk8lflzcy] {
    background-color: #f3f4f6;
    border-bottom-color: #d1d5db;
}

.group-header-clickable h3[b-qtk8lflzcy] {
    color: #3b82f6;
    transition: color 0.2s;
    font-size: 24px;
}

.group-header-clickable:hover h3[b-qtk8lflzcy] {
    color: #2563eb;
}
/* /Components/Pagination.razor.rz.scp.css */
/* Pagination Container */
.pagination-container[b-iebbcps7bv] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 16px 0;
  gap: 16px;
}

.pagination-results[b-iebbcps7bv] {
  font-size: 14px;
  color: #374151;
}

.pagination-right-group[b-iebbcps7bv] {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pagination-controls[b-iebbcps7bv] {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn[b-iebbcps7bv] {
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-btn:hover:not(:disabled)[b-iebbcps7bv] {
  background-color: #f3f4f6;
  border-color: #9ca3af;
}

.pagination-btn.active[b-iebbcps7bv] {
  background-color: #005ecf;
  color: #ffffff;
  border-color: #005ecf;
}

.pagination-btn:disabled[b-iebbcps7bv] {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f3f4f6;
  color: #9ca3af;
}

.pagination-ellipsis[b-iebbcps7bv] {
  padding: 8px 4px;
  color: #6b7280;
  font-size: 14px;
  user-select: none;
}

.pagination-page-size[b-iebbcps7bv] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.page-size-select[b-iebbcps7bv] {
  padding: 8px 32px 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.page-size-select:hover[b-iebbcps7bv] {
  border-color: #9ca3af;
}

.page-size-select:focus[b-iebbcps7bv] {
  outline: none;
  border-color: #005ecf;
  box-shadow: 0 0 0 3px rgba(0, 94, 207, 0.1);
}

/* /Components/Sidebar.razor.rz.scp.css */
.sidebar[b-edcuq4gyr3] {
    width: 200px;
    background: #285EC8;
    display: flex;
    flex-direction: column;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease;
    position: sticky;
}

.sidebar.collapsed[b-edcuq4gyr3] {
    width: 60px;
}

.sidebar-header[b-edcuq4gyr3] {
    padding: 20px 11px 24px 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    gap: 12px;
}

.home-icon-container[b-edcuq4gyr3] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    flex-shrink: 0;
    margin-bottom: 8px;
}

.home-icon-container:hover[b-edcuq4gyr3] {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.home-icon-container svg[b-edcuq4gyr3] {
    width: 24px;
    height: 24px;
}

.logo-image[b-edcuq4gyr3] {
    width: 40px;
    height: 40px;
    mix-blend-mode: lighten;
    object-fit: contain;
    border-radius: 8px;
}

.sidebar.collapsed .sidebar-header[b-edcuq4gyr3] {
    padding: 20px 10px;
    justify-content: center;
}

.sidebar.collapsed .home-icon-container[b-edcuq4gyr3] {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
}

.logo[b-edcuq4gyr3] {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.logo-icon[b-edcuq4gyr3] {
    width: 24px;
    height: 24px;
    color: white;
}

.brand-name[b-edcuq4gyr3] {
    color: white;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.sidebar-nav[b-edcuq4gyr3] {
    display: flex;
    height: 100vh  ;
    flex-direction: column;
    gap: 12px;
}

.nav-item[b-edcuq4gyr3] {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 176px;
    height: 38px;
    padding-left: 4px;
    margin: 4px 16px;
    border-radius: 44px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #FFFFFF;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
}

.sidebar.collapsed .nav-item[b-edcuq4gyr3] {
    width: 36px;
    margin: 4px 12px;
    justify-content: center;
    align-items: center;
    padding-left: 3px;
    gap: 0;
}

.nav-text[b-edcuq4gyr3] {
    transition: opacity 0.2s ease;
}

.sidebar.collapsed .nav-text[b-edcuq4gyr3] {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.sidebar.collapsed .nav-item svg[b-edcuq4gyr3],
.sidebar.collapsed .nav-item .nav-icon[b-edcuq4gyr3] {
    margin: 0 auto;
    display: block;
    flex-shrink: 0;
}

/* Ensure all icon components are centered in collapsed state */
.sidebar.collapsed .nav-item > *[b-edcuq4gyr3] {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-item.active[b-edcuq4gyr3] {
    background: white;
    color: #005ECF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-icon[b-edcuq4gyr3] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.nav-item.active .nav-icon[b-edcuq4gyr3] {
    color: #005ECF;
}

.sidebar-footer[b-edcuq4gyr3] {
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.sidebar.collapsed .sidebar-footer[b-edcuq4gyr3] {
    padding: 20px 12px;
    justify-content: center;
    gap: 0;
}

.footer-icon[b-edcuq4gyr3] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
}

.footer-icon:hover[b-edcuq4gyr3] {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.footer-icon-svg[b-edcuq4gyr3] {
    width: 16px;
    height: 16px;
    color: white;
}

.sidebar-arrow[b-edcuq4gyr3] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.sidebar-arrow:hover[b-edcuq4gyr3] {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.sidebar-arrow.rotated[b-edcuq4gyr3] {
    transform: rotate(180deg);
}

.sidebar-arrow.rotated:hover[b-edcuq4gyr3] {
    transform: rotate(180deg) scale(1.05);
}

/* Hide other footer icons when collapsed */
.sidebar.collapsed .footer-icon[b-edcuq4gyr3] {
    display: none;
}

.sidebar.collapsed .sidebar-arrow[b-edcuq4gyr3] {
    display: flex;
}

/* Ensure arrow is always visible */
.sidebar-arrow[b-edcuq4gyr3] {
    flex-shrink: 0;
}

.sidebar-arrow svg[b-edcuq4gyr3] {
    width: 24px;
    height: 24px;
}

.sidebar-bottom-decoration[b-edcuq4gyr3] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
    overflow: hidden;
}

.sidebar-bottom-decoration svg[b-edcuq4gyr3],
.sidebar-bottom-decoration[b-edcuq4gyr3]  svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sidebar.collapsed .sidebar-bottom-decoration[b-edcuq4gyr3] {
    display: none;
}



@media (max-width: 768px) {
    .sidebar[b-edcuq4gyr3] {
        width: 200px;
        position: fixed;
        z-index: 1000;
        height: 100vh;
        transition: width 0.3s ease;
    }
    
    /* Allow collapse functionality on mobile */
    .sidebar.collapsed[b-edcuq4gyr3] {
        width: 60px;
    }
    
    /* Show all footer icons on mobile when expanded */
    .sidebar .footer-icon[b-edcuq4gyr3] {
        display: flex;
    }
    
    .sidebar .sidebar-arrow[b-edcuq4gyr3] {
        display: flex;
    }
    
    /* Nav items for expanded state on mobile */
    .sidebar .nav-item[b-edcuq4gyr3] {
        width: 176px;
        margin: 4px 16px;
        justify-content: flex-start;
        padding-left: 4px;
        gap: 16px;
    }
    
    .sidebar .nav-text[b-edcuq4gyr3] {
        opacity: 1;
        width: auto;
        overflow: visible;
    }
    
    /* Collapsed state styles for mobile */
    .sidebar.collapsed .nav-item[b-edcuq4gyr3] {
        width: 36px;
        margin: 4px 12px;
        justify-content: center;
        align-items: center;
        padding-left: 3px;
        gap: 0;
    }
    
    .sidebar.collapsed .nav-text[b-edcuq4gyr3] {
        opacity: 0;
        width: 0;
        overflow: hidden;
    }
    
    .sidebar.collapsed .footer-icon[b-edcuq4gyr3] {
        display: none;
    }
    
    .sidebar.collapsed .sidebar-arrow[b-edcuq4gyr3] {
        display: flex;
    }
}


/* /Components/StoreList.razor.rz.scp.css */
/* Location Cards Container */
.location-cards-container[b-8gxk6drtxu] {
  display: flex;
  flex-direction: column;
}

/* Loading and Empty States */
.loading-message[b-8gxk6drtxu],
.no-stores-message[b-8gxk6drtxu] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  font-size: 16px;
  color: #6b7280;
  background-color: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

/* /Components/SystemAdminSidebar.razor.rz.scp.css */
.sidebar[b-v71en99q8u] {
    width: 200px;
    background: #285EC8;
    display: flex;
    flex-direction: column;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease;
    position: sticky;
}

.sidebar.collapsed[b-v71en99q8u] {
    width: 60px;
}

.sidebar-header[b-v71en99q8u] {
    padding: 20px 11px 24px 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    gap: 12px;
}

.home-icon-container[b-v71en99q8u] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    flex-shrink: 0;
    margin-bottom: 8px;
}

.home-icon-container:hover[b-v71en99q8u] {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.home-icon-container svg[b-v71en99q8u] {
    width: 24px;
    height: 24px;
}

.logo-image[b-v71en99q8u] {
    width: 40px;
    height: 40px;
    mix-blend-mode: lighten;
    object-fit: contain;
    border-radius: 8px;
}

.sidebar.collapsed .sidebar-header[b-v71en99q8u] {
    padding: 20px 10px;
    justify-content: center;
}

.sidebar.collapsed .home-icon-container[b-v71en99q8u] {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
}

.logo[b-v71en99q8u] {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.logo-icon[b-v71en99q8u] {
    width: 24px;
    height: 24px;
    color: white;
}

.brand-name[b-v71en99q8u] {
    color: white;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.sidebar-nav[b-v71en99q8u] {
    display: flex;
    height: 100vh  ;
    flex-direction: column;
    gap: 12px;
}

.nav-item[b-v71en99q8u] {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 176px;
    height: 38px;
    padding-left: 4px;
    margin: 4px 16px;
    border-radius: 44px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #FFFFFF;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
}

.sidebar.collapsed .nav-item[b-v71en99q8u] {
    width: 36px;
    margin: 4px 12px;
    justify-content: center;
    align-items: center;
    padding-left: 3px;
    gap: 0;
}

.nav-text[b-v71en99q8u] {
    transition: opacity 0.2s ease;
}

.sidebar.collapsed .nav-text[b-v71en99q8u] {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.sidebar.collapsed .nav-item svg[b-v71en99q8u],
.sidebar.collapsed .nav-item .nav-icon[b-v71en99q8u] {
    margin: 0 auto;
    display: block;
    flex-shrink: 0;
}

/* Ensure all icon components are centered in collapsed state */
.sidebar.collapsed .nav-item > *[b-v71en99q8u] {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-item.active[b-v71en99q8u] {
    background: white;
    color: #005ECF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-icon[b-v71en99q8u] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.nav-item.active .nav-icon[b-v71en99q8u] {
    color: #005ECF;
}

.sidebar-footer[b-v71en99q8u] {
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.sidebar.collapsed .sidebar-footer[b-v71en99q8u] {
    padding: 20px 12px;
    justify-content: center;
    gap: 0;
}

.footer-icon[b-v71en99q8u] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
}

.footer-icon:hover[b-v71en99q8u] {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.footer-icon-svg[b-v71en99q8u] {
    width: 16px;
    height: 16px;
    color: white;
}

.sidebar-arrow[b-v71en99q8u] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.sidebar-arrow:hover[b-v71en99q8u] {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.sidebar-arrow.rotated[b-v71en99q8u] {
    transform: rotate(180deg);
}

.sidebar-arrow.rotated:hover[b-v71en99q8u] {
    transform: rotate(180deg) scale(1.05);
}

/* Hide other footer icons when collapsed */
.sidebar.collapsed .footer-icon[b-v71en99q8u] {
    display: none;
}

.sidebar.collapsed .sidebar-arrow[b-v71en99q8u] {
    display: flex;
}

/* Ensure arrow is always visible */
.sidebar-arrow[b-v71en99q8u] {
    flex-shrink: 0;
}

.sidebar-arrow svg[b-v71en99q8u] {
    width: 24px;
    height: 24px;
}

.sidebar-bottom-decoration[b-v71en99q8u] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
    overflow: hidden;
}

.sidebar-bottom-decoration svg[b-v71en99q8u],
.sidebar-bottom-decoration[b-v71en99q8u]  svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sidebar.collapsed .sidebar-bottom-decoration[b-v71en99q8u] {
    display: none;
}



@media (max-width: 768px) {
    .sidebar[b-v71en99q8u] {
        width: 200px;
        position: fixed;
        z-index: 1000;
        height: 100vh;
        transition: width 0.3s ease;
    }
    
    /* Allow collapse functionality on mobile */
    .sidebar.collapsed[b-v71en99q8u] {
        width: 60px;
    }
    
    /* Show all footer icons on mobile when expanded */
    .sidebar .footer-icon[b-v71en99q8u] {
        display: flex;
    }
    
    .sidebar .sidebar-arrow[b-v71en99q8u] {
        display: flex;
    }
    
    /* Nav items for expanded state on mobile */
    .sidebar .nav-item[b-v71en99q8u] {
        width: 176px;
        margin: 4px 16px;
        justify-content: flex-start;
        padding-left: 4px;
        gap: 16px;
    }
    
    .sidebar .nav-text[b-v71en99q8u] {
        opacity: 1;
        width: auto;
        overflow: visible;
    }
    
    /* Collapsed state styles for mobile */
    .sidebar.collapsed .nav-item[b-v71en99q8u] {
        width: 36px;
        margin: 4px 12px;
        justify-content: center;
        align-items: center;
        padding-left: 3px;
        gap: 0;
    }
    
    .sidebar.collapsed .nav-text[b-v71en99q8u] {
        opacity: 0;
        width: 0;
        overflow: hidden;
    }
    
    .sidebar.collapsed .footer-icon[b-v71en99q8u] {
        display: none;
    }
    
    .sidebar.collapsed .sidebar-arrow[b-v71en99q8u] {
        display: flex;
    }
}

/* /Components/Toast.razor.rz.scp.css */
.toast-container[b-if16kn684w] {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast[b-if16kn684w] {
    min-width: 300px;
    max-width: 500px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    pointer-events: auto;
    animation: slideInRight-b-if16kn684w 0.3s ease-out;
    border-left: 4px solid;
}

.toast.toast-success[b-if16kn684w] {
    border-left-color: #10b981;
}

.toast.toast-error[b-if16kn684w] {
    border-left-color: #ef4444;
}

.toast.toast-warning[b-if16kn684w] {
    border-left-color: #f59e0b;
}

.toast.toast-info[b-if16kn684w] {
    border-left-color: #3b82f6;
}

.toast-content[b-if16kn684w] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.toast-icon[b-if16kn684w] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.toast.toast-success .toast-icon[b-if16kn684w] {
    color: #10b981;
}

.toast.toast-error .toast-icon[b-if16kn684w] {
    color: #ef4444;
}

.toast.toast-warning .toast-icon[b-if16kn684w] {
    color: #f59e0b;
}

.toast.toast-info .toast-icon[b-if16kn684w] {
    color: #3b82f6;
}

.toast-message[b-if16kn684w] {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #1f2937;
    word-wrap: break-word;
}

.toast-close[b-if16kn684w] {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: color 0.2s;
    border-radius: 4px;
}

.toast-close:hover[b-if16kn684w] {
    color: #1f2937;
    background-color: #f3f4f6;
}

@keyframes slideInRight-b-if16kn684w {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight-b-if16kn684w {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast.removing[b-if16kn684w] {
    animation: slideOutRight-b-if16kn684w 0.3s ease-in forwards;
}

@media (max-width: 640px) {
    .toast-container[b-if16kn684w] {
        right: 12px;
        left: 12px;
        top: 12px;
    }

    .toast[b-if16kn684w] {
        min-width: auto;
        max-width: 100%;
    }
}

/* /Components/TopHeader.razor.rz.scp.css */
.top-header[b-4hiwh76e1o] {
    padding: 12px 12px 16px 20px;
    background: #f3f4f6;
    width: 300;
    height: 60;
    border-radius: Corner/Medium;
    gap: 6;
    angle: 0 deg;
    opacity: 1;
    padding: spacing-md;
    border-width: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.organization-selector[b-4hiwh76e1o] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: #fff;
    cursor: pointer;
    padding: 12px !important;
    min-width: 300px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.organization-selector:hover[b-4hiwh76e1o] {
    background-color: #f8f9fa;
}

.org-info h2[b-4hiwh76e1o] {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.org-info p[b-4hiwh76e1o] {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

.dropdown-icon[b-4hiwh76e1o] {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

.header-actions[b-4hiwh76e1o] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-container[b-4hiwh76e1o] {
    position: relative;
    display: flex;
    align-items: center;
    width: 300px;
    max-width: 720px;
    height: 46px;
    background: #FFFFFF;
    border-radius: 50px;
    padding: 8px 8px 8px 16px;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.search-container input[b-4hiwh76e1o] {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #374151;
    padding-right: 50px;
}

.search-container input[b-4hiwh76e1o]::placeholder {
    color: #9CA3AF;
}

.search-icon-wrapper[b-4hiwh76e1o] {
    position: absolute;
    right: 4px;
    width: 38px;
    height: 38px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.search-icon-wrapper svg[b-4hiwh76e1o] {
    width: 18px;
    height: 18px;
    color: #6B7280;
}

@media (max-width: 1024px) {
    .top-header[b-4hiwh76e1o] {
        padding: 20px 24px;
    }
    
    .search-container[b-4hiwh76e1o] {
        width: 250px;
    }
    .organization-selector[b-4hiwh76e1o] {
        min-width: initial;
    }
}

@media (max-width: 768px) {
    .top-header[b-4hiwh76e1o] {
        padding: 16px 20px;
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .header-actions[b-4hiwh76e1o] {
        justify-content: space-between;
    }
    
    .search-container[b-4hiwh76e1o] {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .top-header[b-4hiwh76e1o] {
        padding: 12px 16px;
    }
    
    .header-actions[b-4hiwh76e1o] {
        flex-direction: column;
        gap: 12px;
    }
    
    .search-container[b-4hiwh76e1o] {
        width: 100%;
    }
}
/* /Components/UserList.razor.rz.scp.css */
/* User List */
.user-list[b-j0an5ges1g] {
  padding: 16px;
  height: calc(100vh - 245px);
  overflow: auto;
}

.user-row[b-j0an5ges1g] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  margin-top: 8px;
  padding-left: 16px;
  border-bottom: 1px solid #eff1f6;
  cursor: pointer;
  transition: all 0.2s;
}

.user-row:hover[b-j0an5ges1g] {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 11px 16px;
}

.user-row.selected[b-j0an5ges1g] {
  background-color: #f0f7ff;
  border-radius: 8px;
  padding: 11px 16px;
  border: 1px solid #e0f2ff;
}

.user-container[b-j0an5ges1g] {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-checkbox[b-j0an5ges1g] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-checkbox input[type="checkbox"][b-j0an5ges1g] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid #d1d5db;
  cursor: pointer;
  accent-color: #005ecf;
}

.user-identifier[b-j0an5ges1g] {
  flex: 1;
  width: 300px;
  overflow: hidden;  
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-name[b-j0an5ges1g] {
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.user-username[b-j0an5ges1g] {
  font-size: 16px;
  color: #6b7280;
  min-width: 140px;
  font-weight: 400;
}

.user-username.invitation-sent[b-j0an5ges1g] {
  color: #10b981;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.user-username.invitation-rejected[b-j0an5ges1g] {
  color: #ef4444;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.user-apps-container[b-j0an5ges1g] {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-apps[b-j0an5ges1g] {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 14px;
  min-width: 95px;
  border: 1px solid #d1d5db;
  height: 33px;
  padding: 2px;
  border-radius: 30px;
  width: fit-content;
}

.user-details[b-j0an5ges1g] {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  transition: color 0.2s;
}

.user-row:hover .user-details[b-j0an5ges1g] {
  color: #6b7280;
}

/* Loading and empty states */
.loading-message[b-j0an5ges1g],
.no-users-message[b-j0an5ges1g] {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 16px;
}

.loading-message[b-j0an5ges1g] {
  color: #007bff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .user-list[b-j0an5ges1g] {
    padding: 0 24px 24px;
  }
}

@media (max-width: 768px) {
  .user-list[b-j0an5ges1g] {
    padding: 0 20px 20px;
  }

  .user-row[b-j0an5ges1g] {
    flex-wrap: wrap;
    gap: 12px;
  }

  .user-identifier[b-j0an5ges1g] {
    min-width: 150px;
  }
}

@media (max-width: 480px) {
  .user-list[b-j0an5ges1g] {
    padding: 0 16px 16px;
  }

  .user-row[b-j0an5ges1g] {
    padding: 12px 0;
    gap: 8px;
  }

  .user-row.selected[b-j0an5ges1g] {
    padding: 12px 16px;
    margin: 4px -16px;
  }

  .user-name[b-j0an5ges1g] {
    font-size: 15px;
  }

  .user-username[b-j0an5ges1g] {
    font-size: 13px;
    min-width: 100px;
  }

  .user-apps[b-j0an5ges1g] {
    font-size: 13px;
    min-width: 80px;
  }
}

/* /Components/UserPermissionModal.razor.rz.scp.css */
.modal-overlay[b-5vlggobtn4] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.user-permission-modal[b-5vlggobtn4] {
  background: white;
  border-radius: 16px;
  width: 1000px;
  max-width: 90vw;
  height: 94vh;
  max-height: 804px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Modal Header */
.modal-header[b-5vlggobtn4] {
  width: 100%;
  max-width: 1000px;
  height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
  background: white;
}

.header-left[b-5vlggobtn4] {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 34px;
}

.user-icon[b-5vlggobtn4] {
  width: 34px;
  height: 34px;
  color: #6b7280;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-header h2[b-5vlggobtn4] {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  color: #111827;
}

.close-button[b-5vlggobtn4] {
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
}

.close-button:hover[b-5vlggobtn4] {
  background-color: #f3f4f6;
}

/* Modal Body */
.modal-body[b-5vlggobtn4] {
  padding: 20px 24px;
  flex: 1;
  max-height: 388px;
  background: #f9fafb;
  overflow-y: auto;
  min-height: 0; /* Allow flex shrinking */
}

.permission-container[b-5vlggobtn4] {
  display: flex;
  gap: 24px;
  height: 100%;
}

/* Left Column */
.left-column[b-5vlggobtn4] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.applications-section[b-5vlggobtn4] {
  padding: 20px 24px;
  max-height: 254px;
  height: 100%;
  overflow: auto;
}

/* Reset default checkbox */
input[type="checkbox"].permission-checkbox[b-5vlggobtn4] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #285ec8; /* same as your theme color */
  border-radius: 50%; /* make it circular */
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Hover and focus state for accessibility */
input[type="checkbox"].permission-checkbox:hover[b-5vlggobtn4] {
  border-color: #1d4db8;
  box-shadow: 0 0 0 3px rgba(40, 94, 200, 0.2);
}

input[type="checkbox"].permission-checkbox:focus[b-5vlggobtn4] {
  outline: none;
  box-shadow: 0 0 0 3px rgba(40, 94, 200, 0.3);
}

/* Checked state — inner filled circle */
input[type="checkbox"].permission-checkbox:checked[b-5vlggobtn4]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #285ec8;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Right Column */
.right-column[b-5vlggobtn4] {
  flex: 1.24;
  display: flex;
  flex-direction: column;
}

/* Section Styling */
.section[b-5vlggobtn4] {
  border-left: 1px solid #e5e7eb;
  padding-left: 20px;
}

.section-header[b-5vlggobtn4] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section-header h3[b-5vlggobtn4] {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #111827;
}

.help-icon[b-5vlggobtn4] {
  width: 20px;
  height: 20px;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Modentity Section */
.modentity-content[b-5vlggobtn4] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.invitation-container[b-5vlggobtn4] {
  background: white;
  border: 1px solid #e9eaeb;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.invitation-status[b-5vlggobtn4] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.status-text[b-5vlggobtn4] {
  font-size: 14px;
  color: #191c20;
  font-weight: 500;
}

.resend-link[b-5vlggobtn4] {
  background: none;
  border: none;
  color: #005ecf;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-weight: 500;
}

.resend-link:hover[b-5vlggobtn4] {
  color: #0047a3;
}

.email-display[b-5vlggobtn4] {
  width: 100%;
}

.email-text[b-5vlggobtn4] {
  font-size: 14px;
  color: #191c20;
  font-family: inherit;
  padding: 12px 16px;
  background: #f9fafb;
  border: 1px solid #e9eaeb;
  border-radius: 8px;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* Access & Date Section */
.access-date-content[b-5vlggobtn4] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-option[b-5vlggobtn4] {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  accent-color: #f1ee1c;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid #e9eaeb;
  background: white;
  height: 48px;
  min-height: 48px;
}

.radio-option:hover[b-5vlggobtn4] {
  background: #f9fafb;
  border-color: #d1d5db;
}

.radio-option.selected[b-5vlggobtn4] {
  background: #f5f3ff;
  border-color: #005ecf;
}

.radio-option input[type="radio"][b-5vlggobtn4] {
  width: 20px;
  height: 20px;
  accent-color: #005ecf;
  cursor: pointer;
  flex-shrink: 0;
}

.radio-label[b-5vlggobtn4] {
  font-size: 14px;
  color: #6b7280;
  flex: 1;
  font-weight: 400;
}

.change-button[b-5vlggobtn4] {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #005ecf;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
  flex-shrink: 0;
  font-weight: 500;
}

.change-button:hover[b-5vlggobtn4] {
  background: #f5f3ff;
}

/* Applications Section */
.loading-message[b-5vlggobtn4],
.no-applications-message[b-5vlggobtn4] {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
  font-size: 14px;
}

.loading-message[b-5vlggobtn4] {
  color: #005ecf;
}

.app-grid[b-5vlggobtn4] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.app-card[b-5vlggobtn4] {
  position: relative;
  width: 100%;
  border: 1px solid #e9eaeb;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 0px;
}

.app-card:hover[b-5vlggobtn4] {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.app-card.selected[b-5vlggobtn4] {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.app-card-inner[b-5vlggobtn4] {
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 12px;
  width: 100%;
}

.app-icon[b-5vlggobtn4] {
  flex-shrink: 0;
  width: 56px !important;
  height: 56px !important;
  padding: auto;
  display: flex;
  border-right: 1px solid #e9eaeb;
  align-items: center;
  justify-content: center;
}

.app-icon svg[b-5vlggobtn4] {
  width: 30px;
  height: 32px;
}

.app-content[b-5vlggobtn4] {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.app-name[b-5vlggobtn4] {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  padding-left: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-role[b-5vlggobtn4] {
  font-size: 11px;
  font-weight: 400;
  color: #6b7280;
  padding-left: 12px;
  display: block;
  margin-top: 2px;
}

.app-checkbox-container[b-5vlggobtn4] {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  pointer-events: none;
  height: 20px;
}

.app-checkbox[b-5vlggobtn4] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #2563eb;
}

.app-checkbox:checked[b-5vlggobtn4] {
  pointer-events: none;
}

.app-access-date[b-5vlggobtn4] {
  font-size: 12px;
  color: #6b7280;
  background-color: aliceblue;
  display: block;
  margin-top: 4px;
  font-weight: 400;
}

/* Permissions Section */
.permissions-content[b-5vlggobtn4] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.permission-option[b-5vlggobtn4] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid #e5e7eb;
  background: #fff;
  height: 68px;
  min-height: 68px;
}

.permission-option:hover[b-5vlggobtn4] {
  background: #f0f9ff;
  border-color: #005ecf;
}

.permission-option.selected[b-5vlggobtn4] {
  background: #eff6ff;
  border-color: #005ecf;
}

.permission-info[b-5vlggobtn4] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.permission-title[b-5vlggobtn4] {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  margin: 0;
}

.permission-description[b-5vlggobtn4] {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
  margin: 0;
}

.permission-option input[type="radio"][b-5vlggobtn4],
.permission-option input[type="checkbox"][b-5vlggobtn4] {
  width: 20px;
  height: 20px;
  accent-color: #005ecf;
  cursor: pointer;
  margin-left: 12px;
}

/* Style checkbox to look like a radio button */
.access-disabled-section .permission-option input[type="checkbox"][b-5vlggobtn4] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  background: white;
}

.access-disabled-section .permission-option input[type="checkbox"]:hover[b-5vlggobtn4] {
  border-color: #005ecf;
}

.access-disabled-section .permission-option input[type="checkbox"]:checked[b-5vlggobtn4] {
  border-color: #005ecf;
  background: white;
}

.access-disabled-section
  .permission-option
  input[type="checkbox"]:checked[b-5vlggobtn4]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #005ecf;
}

/* Modal Footer */
.modal-footer[b-5vlggobtn4] {
  width: 100%;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
  background: white;
  flex-shrink: 0;
}

.modal-inner-footer[b-5vlggobtn4] {
  width: 100%;
  max-width: 1000px;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn[b-5vlggobtn4] {
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  height: 48px;
  min-width: 92px;
  padding: 12px 20px;
}

.btn-primary[b-5vlggobtn4] {
  background: #005ecf;
  color: white;
}

.btn-primary:hover:not(:disabled)[b-5vlggobtn4] {
  background: #005dcfcb;
}

.btn-primary:disabled[b-5vlggobtn4] {
  background: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
}

.btn-secondary[b-5vlggobtn4] {
  border-radius: 50px;
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-secondary:hover[b-5vlggobtn4] {
  background: #f3f4f6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .user-permission-modal[b-5vlggobtn4] {
    width: 95vw;
    max-height: 95vh;
  }

  .modal-header[b-5vlggobtn4],
  .modal-footer[b-5vlggobtn4] {
    width: 100%;
  }

  .modal-footer[b-5vlggobtn4] {
    padding: 16px 20px;
  }

  .permission-container[b-5vlggobtn4] {
    flex-direction: column;
  }

  .app-grid[b-5vlggobtn4] {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .user-permission-modal[b-5vlggobtn4] {
    width: 98vw;
    max-width: 98vw;
    margin: 1vh;
  }

  .modal-footer[b-5vlggobtn4] {
    padding: 16px 18px;
  }

  .app-grid[b-5vlggobtn4] {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .modal-footer[b-5vlggobtn4] {
    padding: 12px 16px;
    min-height: 70px;
  }

  .modal-inner-footer[b-5vlggobtn4] {
    flex-direction: column;
    gap: 8px;
  }

  .btn[b-5vlggobtn4] {
    width: 100%;
    min-width: unset;
  }

  .app-grid[b-5vlggobtn4] {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .user-permission-modal[b-5vlggobtn4] {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }

  .modal-header[b-5vlggobtn4],
  .modal-body[b-5vlggobtn4],
  .modal-footer[b-5vlggobtn4] {
    padding-left: 16px;
    padding-right: 16px;
  }

  .modal-body[b-5vlggobtn4] {
    max-height: calc(100vh - 140px); /* Account for header and footer */
    padding: 16px;
  }

  .modal-header h2[b-5vlggobtn4] {
    font-size: 16px;
  }

  .modal-footer[b-5vlggobtn4] {
    padding: 12px 16px;
    min-height: 70px;
  }

  .modal-inner-footer[b-5vlggobtn4] {
    flex-direction: column;
    gap: 8px;
  }

  .btn[b-5vlggobtn4] {
    width: 100%;
    min-width: unset;
  }

  .app-grid[b-5vlggobtn4] {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-card[b-5vlggobtn4] {
    min-height: 90px; /* Larger touch target for mobile with vertical layout */
  }

  .app-card-inner[b-5vlggobtn4] {
    flex-direction: column;
    align-items: center;
    padding: 0px 16px;
    gap: 8px;
    min-height: 90px;
  }

  /* Icon and checkbox on top row */
  .app-icon[b-5vlggobtn4] {
    position: absolute;
    top: 12px;
    left: 12px;
    margin: 0 !important;
  }

  .app-checkbox-container[b-5vlggobtn4] {
    position: absolute;
    top: 12px;
    right: 12px;
  }

  /* Name below */
  .app-content[b-5vlggobtn4] {
    width: 100%;
    margin-top: 32px;
    justify-content: center;
    text-align: center;
  }

  .app-name[b-5vlggobtn4] {
    white-space: normal;
    overflow: visible;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .modal-header[b-5vlggobtn4] {
    height: auto;
    min-height: 68px;
  }

  .modal-footer[b-5vlggobtn4] {
    height: auto;
    min-height: 80px;
  }

  .app-card[b-5vlggobtn4] {
    min-height: 90px; /* Larger touch target for mobile with vertical layout */
  }

  .app-card-inner[b-5vlggobtn4] {
    flex-direction: column;
    align-items: center;
    padding: 0px 16px;
    gap: 8px;
    min-height: 90px;
  }

  /* Icon and checkbox on top row */
  .app-icon[b-5vlggobtn4] {
    position: absolute;
    top: 12px;
    left: 12px;
    margin: 0 !important;
  }

  .app-checkbox-container[b-5vlggobtn4] {
    position: absolute;
    top: 12px;
    right: 12px;
  }

  /* Name below */
  .app-content[b-5vlggobtn4] {
    width: 100%;
    margin-top: 32px;
    justify-content: center;
    text-align: center;
  }

  .app-name[b-5vlggobtn4] {
    white-space: normal;
    overflow: visible;
    text-align: center;
    width: 100%;
  }
}

/* Extra small screens (phones in landscape) */
@media (max-width: 360px) {
  .modal-footer[b-5vlggobtn4] {
    padding: 8px 12px;
    min-height: 60px;
  }

  .modal-body[b-5vlggobtn4] {
    padding: 8px 12px;
    max-height: calc(100vh - 120px);
  }

  .app-name[b-5vlggobtn4] {
    font-size: 14px;
  }

  .app-card[b-5vlggobtn4] {
    min-height: 65px;
  }

  .app-card-inner[b-5vlggobtn4] {
    padding: 12px;
    min-height: 65px;
  }

  .btn[b-5vlggobtn4] {
    height: 40px;
    font-size: 13px;
  }
}

/* Mobile landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .user-permission-modal[b-5vlggobtn4] {
    height: 100vh;
    max-height: 100vh;
  }

  .modal-body[b-5vlggobtn4] {
    max-height: calc(100vh - 140px); /* Account for header and footer */
    overflow-y: auto;
  }

  .app-grid[b-5vlggobtn4] {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

/* Application status indicators */
.app-status[b-5vlggobtn4] {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
  display: inline-block;
}

.app-status.newly-granted[b-5vlggobtn4] {
  background-color: #d1fae5;
  color: #065f46;
}

.app-status.being-revoked[b-5vlggobtn4] {
  background-color: #fee2e2;
  color: #991b1b;
}

.app-status.current[b-5vlggobtn4] {
  background-color: #e0e7ff;
  color: #3730a3;
}

/* Application card states */
.app-card.newly-selected[b-5vlggobtn4] {
  border-color: #10b981;
  background-color: #f0fdf4;
}

.app-card.being-revoked[b-5vlggobtn4] {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.app-card.newly-selected .app-checkbox[b-5vlggobtn4] {
  accent-color: #10b981;
}

.app-card.being-revoked .app-checkbox[b-5vlggobtn4] {
  accent-color: #ef4444;
}

/* Date Picker Modal Styles */
.date-picker-overlay[b-5vlggobtn4] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4000;
  animation: fadeIn-b-5vlggobtn4 0.2s ease-in-out;
}

@keyframes fadeIn-b-5vlggobtn4 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.date-picker-modal[b-5vlggobtn4] {
  background: white;
  border-radius: 16px;
  width: 480px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: slideIn-b-5vlggobtn4 0.3s ease-out;
}

@keyframes slideIn-b-5vlggobtn4 {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.date-picker-header[b-5vlggobtn4] {
  width: 100%;
  height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
  background: white;
}

.date-picker-header h3[b-5vlggobtn4] {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.date-picker-body[b-5vlggobtn4] {
  padding: 24px;
  background: #f9fafb;
}

.date-input[b-5vlggobtn4] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #111827;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
}

.date-input:focus[b-5vlggobtn4] {
  outline: none;
  border-color: #005ecf;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.date-picker-footer[b-5vlggobtn4] {
  width: 100%;
  min-height: 80px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
  background: white;
}

.user-email[b-5vlggobtn4] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
/* /Components/UserPermissionModalSections/AccessAndDateSection.razor.rz.scp.css */
/* Access & Date Section - inherits styles from parent UserPermissionModal */
.section-header[b-jge4vsvt13] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section-header h3[b-jge4vsvt13] {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #111827;
}

.help-icon[b-jge4vsvt13] {
  width: 20px;
  height: 20px;
  color: #6B7280;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.access-date-content[b-jge4vsvt13] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-option[b-jge4vsvt13] {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  accent-color: #f1ee1c;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid #E9EAEB;
  background: white;
  height: 48px;
  min-height: 48px;
}

.radio-option:hover:not(.disabled)[b-jge4vsvt13] {
  background: #F9FAFB;
  border-color: #D1D5DB;
}

.radio-option.selected[b-jge4vsvt13] {
  background: #F5F3FF;
  border-color: #005ECF;
}

.radio-option.disabled[b-jge4vsvt13] {
  opacity: 0.6;
  cursor: not-allowed;
}

.radio-option input[type="radio"][b-jge4vsvt13] {
  width: 20px;
  height: 20px;
  accent-color: #005ECF;
  cursor: pointer;
  flex-shrink: 0;
}

.radio-label[b-jge4vsvt13] {
  font-size: 14px;
  color: #6B7280;
  flex: 1;
  font-weight: 400;
}

.change-button[b-jge4vsvt13] {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #005ECF;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s;
  flex-shrink: 0;
  font-weight: 500;
}

.change-button:hover:not(:disabled)[b-jge4vsvt13] {
  background: #F5F3FF;
}

.change-button:disabled[b-jge4vsvt13] {
  opacity: 0.5;
  cursor: not-allowed;
}

.change-button svg[b-jge4vsvt13] {
  width: 16px;
  height: 16px;
}

/* /Components/UserPermissionModalSections/ModentitySection.razor.rz.scp.css */
/* Modentity Section - inherits styles from parent UserPermissionModal */
.section-header[b-salw7jzde7] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section-header h3[b-salw7jzde7] {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #111827;
}

.help-icon[b-salw7jzde7] {
  width: 20px;
  height: 20px;
  color: #6B7280;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modentity-content[b-salw7jzde7] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.invitation-container[b-salw7jzde7] {
  background: white;
  border: 1px solid #E9EAEB;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.invitation-status[b-salw7jzde7] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.status-text[b-salw7jzde7] {
  font-size: 14px;
  color: #191C20;
  font-weight: 500;
}

.resend-link[b-salw7jzde7] {
  background: none;
  border: none;
  color: #005ECF;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-weight: 500;
}

.resend-link:hover[b-salw7jzde7] {
  color: #0047A3;
}

.resend-link:disabled[b-salw7jzde7] {
  color: #9CA3AF;
  cursor: not-allowed;
  text-decoration: none;
}

.user-email[b-salw7jzde7] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  font-size: 14px;
  color: #191C20;
  margin-top: 8px;
}

/* /Components/UserPermissionModalSections/PermissionsSection.razor.rz.scp.css */
/* Permissions Section - inherits styles from parent UserPermissionModal */
.section[b-n7l9ehca6a] {
  border-left: 1px solid #E5E7EB;
  padding-left: 20px;
}

.section-header[b-n7l9ehca6a] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section-header h3[b-n7l9ehca6a] {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #111827;
}

.help-icon[b-n7l9ehca6a] {
  width: 20px;
  height: 20px;
  color: #6B7280;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.permissions-content[b-n7l9ehca6a] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.self-edit-message[b-n7l9ehca6a] {
  padding: 12px 16px;
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  border-radius: 8px;
  color: #92400E;
  font-size: 14px;
  margin-bottom: 12px;
}

.permission-option[b-n7l9ehca6a] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid #E5E7EB;
  background: #fff;
  height: 68px;
  min-height: 68px;
}

.permission-option:hover:not(.disabled)[b-n7l9ehca6a] {
  background: #F0F9FF;
  border-color: #005ECF;
}

.permission-option.selected[b-n7l9ehca6a] {
  background: #EFF6FF;
  border-color: #005ECF;
}

.permission-option.disabled[b-n7l9ehca6a] {
  opacity: 0.6;
  cursor: not-allowed;
}

.permission-info[b-n7l9ehca6a] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.permission-title[b-n7l9ehca6a] {
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
  margin: 0;
}

.permission-description[b-n7l9ehca6a] {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.4;
  margin: 0;
}

.permission-option input[type="radio"][b-n7l9ehca6a],
.permission-option input[type="checkbox"][b-n7l9ehca6a] {
  width: 20px;
  height: 20px;
  accent-color: #005ECF;
  cursor: pointer;
  margin-left: 12px;
}

.permission-checkbox[b-n7l9ehca6a] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #285EC8;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.permission-checkbox:hover:not(:disabled)[b-n7l9ehca6a] {
  border-color: #1d4db8;
  box-shadow: 0 0 0 3px rgba(40, 94, 200, 0.2);
}

.permission-checkbox:focus[b-n7l9ehca6a] {
  outline: none;
  box-shadow: 0 0 0 3px rgba(40, 94, 200, 0.3);
}

.permission-checkbox:checked[b-n7l9ehca6a]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #285EC8;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.permission-checkbox:disabled[b-n7l9ehca6a] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* /Layout/MainLayout.razor.rz.scp.css */
.app-container[b-5v1etl19wx] {
    display: flex;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.app-container.app-loading > :not(.full-page-loader)[b-5v1etl19wx] {
    visibility: hidden;
}

.main-content[b-5v1etl19wx] {
    flex: 1;
    background-color: #f3f4f6;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

.main-content.sidebar-collapsed[b-5v1etl19wx] {
    margin-left: 0;
}

@media (max-width: 768px) {
    .main-content[b-5v1etl19wx] {
        margin-left: 200px; /* Account for fixed sidebar width when expanded */
        transition: margin-left 0.3s ease;
    }
    
    .main-content.sidebar-collapsed[b-5v1etl19wx] {
        margin-left: 60px; /* Account for collapsed sidebar width */
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-zpybn90bhj] {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

    .collapse[b-zpybn90bhj] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-zpybn90bhj] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Layout/SignupLayout.razor.rz.scp.css */
/* Signup Layout - No Sidebar, Full Screen */
.signup-layout[b-nkmelt93ud] {
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #f7fafc 0%, #eef2f7 60%, #e8eef7 100%);
    display: flex;
    flex-direction: column;
}

/* Ensure full viewport coverage */
html[b-nkmelt93ud], body[b-nkmelt93ud] {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

/* Remove any default margins/padding that might interfere */
*[b-nkmelt93ud] {
    box-sizing: border-box;
}

/* Ensure the signup page takes full width and height */
.signup-layout > *[b-nkmelt93ud] {
    width: 100%;
    flex: 1;
}
/* /Pages/Administrations.razor.rz.scp.css */
/* Reset and base styles */
*[b-v80a12zmcp] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-v80a12zmcp] { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden; 
}

/* Page Container */
.page-container[b-v80a12zmcp] {
    background-color: #fff;
    border-radius: 16px;
    margin: 0 16px;
}

/* Page Title */
.page-title[b-v80a12zmcp] {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title h1[b-v80a12zmcp] {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}

/* Header Actions */
.header-actions[b-v80a12zmcp] {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.btn-delete[b-v80a12zmcp] {
    padding: 12px 20px;
    border: 1px solid #d1d5db;
    width: 204px;
    height: 48px;
    letter-spacing: 0.15px;
    border-radius: 50px;
    background: #ffffff;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-delete:not(:disabled)[b-v80a12zmcp] {
    background-color: #ef4444;
    color: #E5E7EB;
    border-color: #ef4444;
}

.btn-delete:hover:not(:disabled)[b-v80a12zmcp] {
    background-color: #dc2626;
    border-color: #dc2626;
}

.btn-delete:disabled[b-v80a12zmcp] {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #E5E7EB;
}

.btn-add[b-v80a12zmcp] {
    padding: 12px 20px;
    border: none;
    height: 48px;
    width: 184px;
    letter-spacing: 0.15px;
    border-radius: 50px;
    background: #005ECF;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add:hover[b-v80a12zmcp] {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Role Tabs */
.role-tabs[b-v80a12zmcp] {
    display: flex;
    margin: 0px 16px 0px 16px;
    gap: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.tab[b-v80a12zmcp] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px 12px 16px;
    height: 48px;
    cursor: pointer;
    transition: all 0.2s;
    color: #42474E;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.tab:hover[b-v80a12zmcp] {
    color: #374151;
}

.tab.active[b-v80a12zmcp] {
    color: #005ECF;
    border-bottom-color: #005ECF;
}

.tab-icon[b-v80a12zmcp] {
    width: 18px;
    height: 18px;
}

.search-container input[b-v80a12zmcp] {
    padding-left: 20px !important;
}
/* User List */
.user-list[b-v80a12zmcp] {
    padding: 16px;
    padding-top: 0;
    overflow: auto;
}
.user-list-1[b-v80a12zmcp] {
    padding: 16px;
    padding-top: 0;
    overflow: auto;
    height: calc(100vh - 380px);
}

.user-row[b-v80a12zmcp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 7px;
    height: 56px;
    padding-left: 7px;
    border-bottom: 1px solid #EFF1F6;
    cursor: pointer;
    transition: all 0.2s;
}

.user-row:hover[b-v80a12zmcp] {
    background-color: #f9fafb;
}

.user-row.selected[b-v80a12zmcp] {
    background-color: #f9fafb;
}

.user-container[b-v80a12zmcp] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-checkbox[b-v80a12zmcp] {
    display: flex;
    align-items: center;
    justify-content: center;
}


.checkbox-input[b-v80a12zmcp] {
    width: 18px;
    height: 18px;
    border: 2px solid #D1D5DB;
    border-radius: 2px;
    background-color: transparent;
    cursor: pointer;
    appearance: none;
}

.checkbox-input:checked[b-v80a12zmcp]::after {
    content: "";
    position: relative;
    left: 4px;
    top: -7px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: inline-block;
}

.checkbox-input:checked[b-v80a12zmcp] {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.user-identifier[b-v80a12zmcp] {
    flex: 1;
    min-width: 220px;
}

.user-name[b-v80a12zmcp] {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.5;
}

.user-username[b-v80a12zmcp] {
    font-size: 16px;
    line-height: 29px;
    color: #191C20;
    min-width: 140px;
}

.user-apps-container[b-v80a12zmcp] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-apps[b-v80a12zmcp] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 14px;
    min-width: 95px;
    border: 1px solid #D1D5DB;
    height: 33px;
    padding: 2px;
    border-radius: 30px;
    width: fit-content;
}

.user-details[b-v80a12zmcp] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    transition: color 0.2s;
}

.user-row:hover .user-details[b-v80a12zmcp] {
    color: #6b7280;
}

/* Loading and empty states */
.loading-message[b-v80a12zmcp], .no-users-message[b-v80a12zmcp] {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
}

.loading-message[b-v80a12zmcp] {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-title[b-v80a12zmcp] {
        padding: 24px 24px 0;
    }
    
    .role-tabs[b-v80a12zmcp] {
        padding: 20px 24px 0;
        gap: 24px;
    }

}

@media (max-width: 768px) {
    .header-actions[b-v80a12zmcp] {
        justify-content: space-between;
    }

    
    .user-row[b-v80a12zmcp] {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .user-identifier[b-v80a12zmcp] {
        min-width: 150px;
    }
}
/* /Pages/Applications.razor.rz.scp.css */
/* Note: Universal reset removed to prevent conflicts with global styles */

.page-container[b-kikuhq7f7d] {
  background-color: #fff;
  border-radius: 16px;
  margin: 0 16px;
}

.btn-delete[b-kikuhq7f7d] {
  width: 190px !important;
  height: 48px;
  padding: 12px 20px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  color: #374151;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-delete:not(:disabled)[b-kikuhq7f7d] {
  background-color: #ef4444;
  color: white;
  border-color: #ef4444;
}

.btn-delete:hover:not(:disabled)[b-kikuhq7f7d] {
  background-color: #dc2626;
  border-color: #dc2626;
}

.btn-delete:disabled[b-kikuhq7f7d] {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #e5e7eb;
}

.btn-add[b-kikuhq7f7d] {
  width: 163px;
  height: 48px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: #005ecf;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add:hover[b-kikuhq7f7d] {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-add:disabled[b-kikuhq7f7d] {
  background-color: #9CA3AF;
  cursor: not-allowed;
}

.page-title[b-kikuhq7f7d] {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-title h1[b-kikuhq7f7d] {
  font-size: 28px;
  font-weight: 500;
  color: #111827;
  margin: 0;
}

.application-list[b-kikuhq7f7d] {
  padding: 0px 16px 16px;
}

.application-row[b-kikuhq7f7d] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 1px solid #eff1f6;
}

.application-row.selected[b-kikuhq7f7d] {
  background-color: #f9fafb;
}

.application-checkbox[b-kikuhq7f7d] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-actions[b-kikuhq7f7d] {
  gap: 12px;
  display: flex;
}

.application-identifier[b-kikuhq7f7d] {
  flex: 1;
  min-width: 220px;
}

.application-name[b-kikuhq7f7d] {
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  line-height: 24px;
  letter-spacing: 0.15px;
}

.application-license[b-kikuhq7f7d] {
  font-size: 16px;
  color: #191c20;
  min-width: 200px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.application-status[b-kikuhq7f7d] {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #17B26A;
}

.status-text[b-kikuhq7f7d] {
  font-size: 14px;
  font-weight: 500;
  color: #17B26A;
}

.application-container[b-kikuhq7f7d] {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 1024px) {
  .page-title[b-kikuhq7f7d] {
    padding: 24px 24px 0;
  }

  .application-list[b-kikuhq7f7d] {
    padding: 0 24px 24px;
  }
}

@media (max-width: 768px) {
  .page-title[b-kikuhq7f7d] {
    padding: 20px 20px 0;
  }

  .page-title h1[b-kikuhq7f7d] {
    font-size: 24px;
  }

  .application-list[b-kikuhq7f7d] {
    padding: 0 20px 20px;
  }

  .application-row[b-kikuhq7f7d] {
    flex-wrap: wrap;
    gap: 12px;
  }

  .application-identifier[b-kikuhq7f7d] {
    min-width: 150px;
  }
}

@media (max-width: 480px) {
  .btn-delete[b-kikuhq7f7d],
  .btn-add[b-kikuhq7f7d] {
    width: 100%;
    justify-content: center;
  }

  .page-title[b-kikuhq7f7d] {
    padding: 16px 16px 0;
  }

  .page-title h1[b-kikuhq7f7d] {
    font-size: 20px;
  }

  .application-list[b-kikuhq7f7d] {
    padding: 0 16px 16px;
  }

  .application-row[b-kikuhq7f7d] {
    padding: 12px 0;
    gap: 8px;
  }

  .application-row.selected[b-kikuhq7f7d] {
    padding: 12px 16px;
    margin: 4px -16px;
  }

  .application-name[b-kikuhq7f7d] {
    font-size: 15px;
  }

  .application-license[b-kikuhq7f7d] {
    font-size: 13px;
    min-width: 100px;
  }
}

/* Loading and empty states */
.loading-message[b-kikuhq7f7d],
.no-applications-message[b-kikuhq7f7d] {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 16px;
}

.loading-message[b-kikuhq7f7d] {
  color: #007bff;
}
/* /Pages/CreateSystemAdmin.razor.rz.scp.css */
/* Base Styles */
*[b-vmi5oxisqs] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-vmi5oxisqs] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* Main App Container */
.app-container[b-vmi5oxisqs] {
    display: flex;
    min-height: 100vh;
    background-color: #f8f9fa;
}

/* Main Content */
.main-content[b-vmi5oxisqs] {
    flex: 1;
    width: 100%;
    background-color: #ffffff;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

.main-content.sidebar-collapsed[b-vmi5oxisqs] {
    margin-left: 0;
}

@media (max-width: 768px) {
    .main-content[b-vmi5oxisqs] {
        margin-left: 200px; /* Account for fixed sidebar width when expanded */
        transition: margin-left 0.3s ease;
    }
    
    .main-content.sidebar-collapsed[b-vmi5oxisqs] {
        margin-left: 60px; /* Account for collapsed sidebar width */
    }
}

/* Top Header */
.top-header[b-vmi5oxisqs] {
    padding: 24px 32px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.organization-selector[b-vmi5oxisqs] {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.organization-selector:hover[b-vmi5oxisqs] {
    background-color: #f8f9fa;
}

.org-info h2[b-vmi5oxisqs] {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.org-info p[b-vmi5oxisqs] {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.dropdown-icon[b-vmi5oxisqs] {
    width: 16px;
    height: 16px;
    color: #6b7280;
    stroke: currentColor;
    fill: none;
}

.header-actions[b-vmi5oxisqs] {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Page Title */
.page-title[b-vmi5oxisqs] {
    padding: 32px 32px 0;
}

.page-title h1[b-vmi5oxisqs] {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

/* Steps Indicator */
.steps-indicator[b-vmi5oxisqs] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    gap: 16px;
}

.step[b-vmi5oxisqs] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.step.active[b-vmi5oxisqs] {
    opacity: 1;
}

.step.completed[b-vmi5oxisqs] {
    opacity: 1;
}

.step-number[b-vmi5oxisqs] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.step.active .step-number[b-vmi5oxisqs] {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step.completed .step-number[b-vmi5oxisqs] {
    background: #10b981;
    color: white;
}

.step-label[b-vmi5oxisqs] {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.step.active .step-label[b-vmi5oxisqs] {
    color: #111827;
}

.step-divider[b-vmi5oxisqs] {
    height: 2px;
    width: 80px;
    background: #e5e7eb;
    transition: all 0.3s ease;
}

.step.completed + .step-divider[b-vmi5oxisqs] {
    background: #10b981;
}

/* Form Container */
.form-container[b-vmi5oxisqs] {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px 40px;
}

.form-step[b-vmi5oxisqs] {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-step h2[b-vmi5oxisqs] {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.step-description[b-vmi5oxisqs] {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 32px;
}

/* Form Groups */
.form-group[b-vmi5oxisqs] {
    margin-bottom: 24px;
}

.form-group label[b-vmi5oxisqs] {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group label .required[b-vmi5oxisqs] {
    color: #ef4444;
    margin-left: 2px;
}

.form-input[b-vmi5oxisqs] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: all 0.2s;
    background: #f9fafb;
}

.form-input:focus[b-vmi5oxisqs] {
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.input-error[b-vmi5oxisqs] {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-input.input-error:focus[b-vmi5oxisqs] {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input:read-only[b-vmi5oxisqs] {
    background: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

.form-hint[b-vmi5oxisqs] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
}

.hint-icon[b-vmi5oxisqs] {
    width: 14px;
    height: 14px;
    stroke: #2563eb;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.error-text[b-vmi5oxisqs] {
    display: block;
    font-size: 13px;
    color: #ef4444;
    margin-top: 6px;
}

/* Group Search Styles */
.group-search-container[b-vmi5oxisqs] {
    position: relative;
}

.group-search-results[b-vmi5oxisqs] {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 1.5px solid #e0e7ff;
    border-radius: 12px;
    box-shadow: 
        0 0 0 1px rgba(37, 99, 235, 0.05),
        0 20px 40px -12px rgba(37, 99, 235, 0.15),
        0 10px 30px -8px rgba(0, 0, 0, 0.1);
    max-height: 380px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    animation: dropdownSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.group-search-result-item[b-vmi5oxisqs] {
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.group-search-result-item:first-child[b-vmi5oxisqs] {
    border-radius: 12px 12px 0 0;
}

.group-search-result-item:last-child[b-vmi5oxisqs] {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.group-search-result-item:hover[b-vmi5oxisqs] {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.08) 0%, 
        rgba(37, 99, 235, 0.12) 100%);
    padding-left: 22px;
    transform: translateX(4px);
    box-shadow: inset 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.group-search-result-item:active[b-vmi5oxisqs] {
    transform: translateX(2px) scale(0.99);
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(37, 99, 235, 0.2) 100%);
}

.result-group-name[b-vmi5oxisqs] {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.25s ease;
}

.group-search-result-item:hover .result-group-name[b-vmi5oxisqs] {
    color: #1d4ed8;
    transform: translateX(2px);
}

.search-loading[b-vmi5oxisqs] {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 16px;
    background: white;
    border: 1.5px solid #e0e7ff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    text-align: center;
    color: #2563eb;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
}

.search-loading[b-vmi5oxisqs]::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #e0e7ff;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

.selected-group-display[b-vmi5oxisqs] {
    background: #f0f9ff;
    border: 1.5px solid #bae6fd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.selected-group-info[b-vmi5oxisqs] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-group-info strong[b-vmi5oxisqs] {
    font-size: 15px;
    color: #1e293b;
    font-weight: 600;
}

.btn-link[b-vmi5oxisqs] {
    background: none;
    border: none;
    color: #2563eb;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
    text-decoration: underline;
}

.btn-link:hover[b-vmi5oxisqs] {
    background: rgba(37, 99, 235, 0.1);
    text-decoration: none;
}

/* Address Search Dropdown - Enhanced Beautiful Design */
.address-search-wrapper[b-vmi5oxisqs] {
    position: relative;
    width: 100%;
}

.address-search-wrapper .form-control[b-vmi5oxisqs] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
    background: #f9fafb;
    height: 48px;
    color: #111827;
}

.address-search-wrapper .form-control:focus[b-vmi5oxisqs] {
    outline: none;
    border-color: #005ecf;
    background: white;
    box-shadow: 0 0 0 1px #005ecf;
}

.address-search-wrapper .form-control.invalid:focus[b-vmi5oxisqs] {
    border-color: #ef4444;
    background: white;
    box-shadow: 0 0 0 1px #ef4444;
}

.address-search-wrapper .address-dropdown[b-vmi5oxisqs] {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 0;
}

.address-search-wrapper .address-dropdown.show[b-vmi5oxisqs] {
    display: block !important;
}

.address-dropdown-item[b-vmi5oxisqs] {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f3f4f6;
    min-height: 44px;
}

.address-dropdown-item:last-child[b-vmi5oxisqs] {
    border-bottom: none;
}

.address-dropdown-item:hover[b-vmi5oxisqs] {
    background-color: #f9fafb;
}

.address-dropdown-item-icon[b-vmi5oxisqs] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #6b7280;
}

.address-dropdown-item-icon svg[b-vmi5oxisqs] {
    width: 100%;
    height: 100%;
}

.address-dropdown-item-text[b-vmi5oxisqs] {
    flex: 1;
    font-size: 14px;
    color: #111827;
    line-height: 1.5;
    word-wrap: break-word;
}

.address-dropdown-item-text-wrapper[b-vmi5oxisqs] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.address-dropdown-item-text-main[b-vmi5oxisqs] {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

.address-dropdown-item-text-secondary[b-vmi5oxisqs] {
    font-size: 13px;
    color: #6b7280;
}

/* Form Row */
.form-row[b-vmi5oxisqs] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

/* Form Actions */
.form-actions[b-vmi5oxisqs] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.btn-primary[b-vmi5oxisqs] {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover:not(:disabled)[b-vmi5oxisqs] {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:disabled[b-vmi5oxisqs] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary[b-vmi5oxisqs] {
    padding: 12px 24px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: #374151;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover:not(:disabled)[b-vmi5oxisqs] {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.btn-secondary:disabled[b-vmi5oxisqs] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-cancel[b-vmi5oxisqs] {
    padding: 10px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel:hover[b-vmi5oxisqs] {
    background: #f3f4f6;
    border-color: #9ca3af;
}

/* Success Message */
.success-message[b-vmi5oxisqs] {
    background: white;
    border-radius: 12px;
    padding: 48px 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.success-icon[b-vmi5oxisqs] {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg[b-vmi5oxisqs] {
    width: 40px;
    height: 40px;
    stroke: #10b981;
    stroke-width: 3;
    fill: none;
}

.success-message h2[b-vmi5oxisqs] {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.success-details[b-vmi5oxisqs] {
    background: #f9fafb;
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
    text-align: left;
}

.success-details p[b-vmi5oxisqs] {
    font-size: 15px;
    color: #374151;
    margin-bottom: 12px;
    line-height: 1.6;
}

.success-details p:last-child[b-vmi5oxisqs] {
    margin-bottom: 0;
}

.success-details strong[b-vmi5oxisqs] {
    color: #111827;
    font-weight: 600;
}

.status-badge[b-vmi5oxisqs] {
    display: inline-block;
    padding: 8px 16px;
    background: #d1fae5;
    color: #10b981;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 8px;
}

.success-actions[b-vmi5oxisqs] {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

/* Duplicate Confirmation Modal */
.modal-overlay[b-vmi5oxisqs] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.confirmation-overlay[b-vmi5oxisqs] {
    z-index: 4000;
}

.confirmation-modal[b-vmi5oxisqs] {
    background: #ffffff;
    border-radius: 12px;
    width: min(420px, 90vw);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.confirmation-modal h3[b-vmi5oxisqs] {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.confirmation-modal p[b-vmi5oxisqs] {
    margin: 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    white-space: pre-line;
}

.confirmation-modal .modal-actions[b-vmi5oxisqs] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 8px;
}

.loading-modal[b-vmi5oxisqs] {
    align-items: center;
    text-align: center;
}

.loading-spinner[b-vmi5oxisqs] {
    width: 48px;
    height: 48px;
    border: 4px solid #e5e7eb;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: modal-spin-b-vmi5oxisqs 0.9s linear infinite;
    margin: 0 auto 16px;
}

@keyframes modal-spin-b-vmi5oxisqs {
    to {
        transform: rotate(360deg);
    }
}

/* Error Message */
.error-message[b-vmi5oxisqs] {
    background: white;
    border-radius: 12px;
    padding: 48px 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #fee2e2;
}

.error-icon[b-vmi5oxisqs] {
    font-size: 64px;
    margin-bottom: 16px;
}

.error-message h3[b-vmi5oxisqs] {
    font-size: 24px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 12px;
}

.error-message p[b-vmi5oxisqs] {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-header[b-vmi5oxisqs] {
        padding: 20px 24px;
    }

    .address-search-wrapper .address-dropdown[b-vmi5oxisqs] {
        max-height: 250px;
    }

    .address-dropdown-item[b-vmi5oxisqs] {
        padding: 10px 14px;
    }

    .steps-indicator[b-vmi5oxisqs] {
        padding: 24px 20px;
    }

    .step-number[b-vmi5oxisqs] {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-divider[b-vmi5oxisqs] {
        width: 40px;
    }

    .step-label[b-vmi5oxisqs] {
        font-size: 12px;
    }

    .form-container[b-vmi5oxisqs] {
        padding: 0 20px 32px;
    }

    .form-step[b-vmi5oxisqs] {
        padding: 24px;
    }

    .form-step h2[b-vmi5oxisqs] {
        font-size: 20px;
    }

    .form-row[b-vmi5oxisqs] {
        grid-template-columns: 1fr;
    }

    .form-actions[b-vmi5oxisqs] {
        flex-direction: column-reverse;
    }

    .form-actions button[b-vmi5oxisqs] {
        width: 100%;
    }

    .success-message[b-vmi5oxisqs],
    .error-message[b-vmi5oxisqs] {
        padding: 32px 24px;
    }

    .success-actions[b-vmi5oxisqs] {
        flex-direction: column;
    }

    .success-actions button[b-vmi5oxisqs] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .top-header[b-vmi5oxisqs] {
        padding: 16px 20px;
    }

    .page-title[b-vmi5oxisqs] {
        padding: 24px 20px 0;
    }

    .steps-indicator[b-vmi5oxisqs] {
        padding: 20px 16px;
        gap: 8px;
    }

    .step-number[b-vmi5oxisqs] {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .step-divider[b-vmi5oxisqs] {
        width: 24px;
    }

    .step-label[b-vmi5oxisqs] {
        font-size: 11px;
    }

    .form-container[b-vmi5oxisqs] {
        padding: 0 16px 24px;
    }

    .form-step[b-vmi5oxisqs] {
        padding: 20px;
    }

    .form-step h2[b-vmi5oxisqs] {
        font-size: 18px;
    }

    .step-description[b-vmi5oxisqs] {
        font-size: 14px;
    }
}

/* /Pages/CreateSystemAdminSteps/EmailInvitationStep.razor.rz.scp.css */
/* Email Invitation Step - inherits styles from parent CreateSystemAdmin */
.form-step[b-96zvclbuit] {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-step h2[b-96zvclbuit] {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.step-description[b-96zvclbuit] {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 32px;
}

/* Form Groups */
.form-group[b-96zvclbuit] {
  margin-bottom: 24px;
}

.form-group label[b-96zvclbuit] {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.form-group label .required[b-96zvclbuit] {
  color: #ef4444;
  margin-left: 2px;
}

.form-input[b-96zvclbuit] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: all 0.2s;
  background: #f9fafb;
}

.form-input:focus[b-96zvclbuit] {
  border-color: #2563eb;
  background: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.input-error[b-96zvclbuit] {
  border-color: #ef4444;
  background: #fef2f2;
}

.form-input.input-error:focus[b-96zvclbuit] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-text[b-96zvclbuit] {
  display: block;
  font-size: 13px;
  color: #ef4444;
  margin-top: 6px;
}

/* Form Actions */
.form-actions[b-96zvclbuit] {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.btn-primary[b-96zvclbuit] {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: white;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover:not(:disabled)[b-96zvclbuit] {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:disabled[b-96zvclbuit] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Responsive */
@media (max-width: 768px) {
  .form-step[b-96zvclbuit] {
    padding: 24px;
  }

  .form-step h2[b-96zvclbuit] {
    font-size: 20px;
  }

  .form-actions[b-96zvclbuit] {
    flex-direction: column-reverse;
  }

  .form-actions button[b-96zvclbuit] {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .form-step[b-96zvclbuit] {
    padding: 20px;
  }

  .form-step h2[b-96zvclbuit] {
    font-size: 18px;
  }

  .step-description[b-96zvclbuit] {
    font-size: 14px;
  }
}

/* Email Input Wrapper with Spinner */
.email-input-wrapper[b-96zvclbuit] {
  position: relative;
}

.search-spinner[b-96zvclbuit] {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.spinner[b-96zvclbuit] {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: spin-b-96zvclbuit 0.6s linear infinite;
}

@keyframes spin-b-96zvclbuit {
  to {
    transform: rotate(360deg);
  }
}

/* User Info Card */
.user-info-card[b-96zvclbuit] {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.user-info-header[b-96zvclbuit] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.user-info-icon[b-96zvclbuit] {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #10b981;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.user-info-title[b-96zvclbuit] {
  font-size: 15px;
  font-weight: 600;
  color: #0369a1;
}

.user-info-message[b-96zvclbuit] {
  font-size: 14px;
  color: #075985;
  margin-bottom: 12px;
}

.user-info-details[b-96zvclbuit] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.user-info-row[b-96zvclbuit] {
  display: flex;
  gap: 8px;
  font-size: 14px;
}

.user-info-label[b-96zvclbuit] {
  font-weight: 500;
  color: #0c4a6e;
  min-width: 100px;
}

.user-info-value[b-96zvclbuit] {
  color: #075985;
}

/* /Pages/CreateSystemAdminSteps/GroupSetupStep.razor.rz.scp.css */
/* Group Setup Step - inherits styles from parent CreateSystemAdmin */
.form-step[b-k79mc4d9s1] {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-step h2[b-k79mc4d9s1] {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.step-description[b-k79mc4d9s1] {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 32px;
}

/* Form Groups */
.form-group[b-k79mc4d9s1] {
  margin-bottom: 24px;
}

.form-group label[b-k79mc4d9s1] {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.form-group label .required[b-k79mc4d9s1] {
  color: #ef4444;
  margin-left: 2px;
}

.form-input[b-k79mc4d9s1] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: all 0.2s;
  background: #f9fafb;
}

.form-input:focus[b-k79mc4d9s1] {
  border-color: #2563eb;
  background: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.input-error[b-k79mc4d9s1] {
  border-color: #ef4444;
  background: #fef2f2;
}

.form-input.input-error:focus[b-k79mc4d9s1] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-hint[b-k79mc4d9s1] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
}

.error-text[b-k79mc4d9s1] {
  display: block;
  font-size: 13px;
  color: #ef4444;
  margin-top: 6px;
}

/* Group Search Styles */
.group-search-container[b-k79mc4d9s1] {
  position: relative;
}

.group-search-results[b-k79mc4d9s1] {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border: 1.5px solid #e0e7ff;
  border-radius: 12px;
  box-shadow: 
    0 0 0 1px rgba(37, 99, 235, 0.05),
    0 20px 40px -12px rgba(37, 99, 235, 0.15),
    0 10px 30px -8px rgba(0, 0, 0, 0.1);
  max-height: 380px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  animation: dropdownSlideIn-b-k79mc4d9s1 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dropdownSlideIn-b-k79mc4d9s1 {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.group-search-result-item[b-k79mc4d9s1] {
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.group-search-result-item:first-child[b-k79mc4d9s1] {
  border-radius: 12px 12px 0 0;
}

.group-search-result-item:last-child[b-k79mc4d9s1] {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}

.group-search-result-item:hover[b-k79mc4d9s1] {
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.08) 0%, 
    rgba(37, 99, 235, 0.12) 100%);
  padding-left: 22px;
  transform: translateX(4px);
  box-shadow: inset 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.group-search-result-item:active[b-k79mc4d9s1] {
  transform: translateX(2px) scale(0.99);
  background: linear-gradient(135deg, 
    rgba(59, 130, 246, 0.15) 0%, 
    rgba(37, 99, 235, 0.2) 100%);
}

.result-group-name[b-k79mc4d9s1] {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  transition: all 0.25s ease;
}

.group-search-result-item:hover .result-group-name[b-k79mc4d9s1] {
  color: #1d4ed8;
  transform: translateX(2px);
}

.search-loading[b-k79mc4d9s1] {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 16px;
  background: white;
  border: 1.5px solid #e0e7ff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
  text-align: center;
  color: #2563eb;
  font-size: 14px;
  font-weight: 500;
  z-index: 1000;
}

.search-loading[b-k79mc4d9s1]::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #e0e7ff;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: spin-b-k79mc4d9s1 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin-b-k79mc4d9s1 {
  to {
    transform: rotate(360deg);
  }
}

.selected-group-display[b-k79mc4d9s1] {
  background: #f0f9ff;
  border: 1.5px solid #bae6fd;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.selected-group-info[b-k79mc4d9s1] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-group-info strong[b-k79mc4d9s1] {
  font-size: 15px;
  color: #1e293b;
  font-weight: 600;
}

.btn-link[b-k79mc4d9s1] {
  background: none;
  border: none;
  color: #2563eb;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
  text-decoration: underline;
}

.btn-link:hover[b-k79mc4d9s1] {
  background: rgba(37, 99, 235, 0.1);
  text-decoration: none;
}

/* Form Actions */
.form-actions[b-k79mc4d9s1] {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.btn-primary[b-k79mc4d9s1] {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: white;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover:not(:disabled)[b-k79mc4d9s1] {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:disabled[b-k79mc4d9s1] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary[b-k79mc4d9s1] {
  padding: 12px 24px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: white;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover:not(:disabled)[b-k79mc4d9s1] {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.btn-secondary:disabled[b-k79mc4d9s1] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
  .form-step[b-k79mc4d9s1] {
    padding: 24px;
  }

  .form-step h2[b-k79mc4d9s1] {
    font-size: 20px;
  }

  .form-actions[b-k79mc4d9s1] {
    flex-direction: column-reverse;
  }

  .form-actions button[b-k79mc4d9s1] {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .form-step[b-k79mc4d9s1] {
    padding: 20px;
  }

  .form-step h2[b-k79mc4d9s1] {
    font-size: 18px;
  }

  .step-description[b-k79mc4d9s1] {
    font-size: 14px;
  }
}

/* /Pages/CreateSystemAdminSteps/StoreInformationStep.razor.rz.scp.css */
/* Store Information Step - inherits styles from parent CreateSystemAdmin */
.form-step[b-l6nk4h1avt] {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-step h2[b-l6nk4h1avt] {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.step-description[b-l6nk4h1avt] {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 32px;
}

/* Form Groups */
.form-group[b-l6nk4h1avt] {
  margin-bottom: 24px;
}

.form-group label[b-l6nk4h1avt] {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.form-group label .required[b-l6nk4h1avt] {
  color: #ef4444;
  margin-left: 2px;
}

.form-input[b-l6nk4h1avt] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: all 0.2s;
  background: #f9fafb;
}

.form-input:focus[b-l6nk4h1avt] {
  border-color: #2563eb;
  background: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.input-error[b-l6nk4h1avt] {
  border-color: #ef4444;
  background: #fef2f2;
}

.form-input.input-error:focus[b-l6nk4h1avt] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input:read-only[b-l6nk4h1avt] {
  background: #f3f4f6;
  color: #6b7280;
  cursor: not-allowed;
}

.form-input:disabled[b-l6nk4h1avt] {
  background: #f3f4f6;
  color: #6b7280;
  cursor: not-allowed;
}

.form-hint[b-l6nk4h1avt] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
}

.hint-icon[b-l6nk4h1avt] {
  width: 14px;
  height: 14px;
  stroke: #2563eb;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.error-text[b-l6nk4h1avt] {
  display: block;
  font-size: 13px;
  color: #ef4444;
  margin-top: 6px;
}

/* Form Row */
.form-row[b-l6nk4h1avt] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

/* Address Search Dropdown */
.address-search-wrapper[b-l6nk4h1avt] {
  position: relative;
  width: 100%;
}

.address-search-wrapper .form-control[b-l6nk4h1avt] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
  background: #f9fafb;
  height: 48px;
  color: #111827;
}

.address-search-wrapper .form-control:focus[b-l6nk4h1avt] {
  outline: none;
  border-color: #005ecf;
  background: white;
  box-shadow: 0 0 0 1px #005ecf;
}

.address-search-wrapper .form-control.invalid:focus[b-l6nk4h1avt] {
  border-color: #ef4444;
  background: white;
  box-shadow: 0 0 0 1px #ef4444;
}

.address-search-wrapper .address-dropdown[b-l6nk4h1avt] {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 0;
}

.address-search-wrapper .address-dropdown.show[b-l6nk4h1avt] {
  display: block !important;
}

.address-dropdown-item[b-l6nk4h1avt] {
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #f3f4f6;
  min-height: 44px;
}

.address-dropdown-item:last-child[b-l6nk4h1avt] {
  border-bottom: none;
}

.address-dropdown-item:hover[b-l6nk4h1avt] {
  background-color: #f9fafb;
}

.address-dropdown-item-icon[b-l6nk4h1avt] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #6b7280;
}

.address-dropdown-item-icon svg[b-l6nk4h1avt] {
  width: 100%;
  height: 100%;
}

.address-dropdown-item-text-wrapper[b-l6nk4h1avt] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.address-dropdown-item-text-main[b-l6nk4h1avt] {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.address-dropdown-item-text-secondary[b-l6nk4h1avt] {
  font-size: 13px;
  color: #6b7280;
}

/* Form Actions */
.form-actions[b-l6nk4h1avt] {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.btn-primary[b-l6nk4h1avt] {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: white;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover:not(:disabled)[b-l6nk4h1avt] {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:disabled[b-l6nk4h1avt] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary[b-l6nk4h1avt] {
  padding: 12px 24px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: white;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover:not(:disabled)[b-l6nk4h1avt] {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.btn-secondary:disabled[b-l6nk4h1avt] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
  .form-step[b-l6nk4h1avt] {
    padding: 24px;
  }

  .form-step h2[b-l6nk4h1avt] {
    font-size: 20px;
  }

  .address-search-wrapper .address-dropdown[b-l6nk4h1avt] {
    max-height: 250px;
  }

  .address-dropdown-item[b-l6nk4h1avt] {
    padding: 10px 14px;
  }

  .form-row[b-l6nk4h1avt] {
    grid-template-columns: 1fr;
  }

  .form-actions[b-l6nk4h1avt] {
    flex-direction: column-reverse;
  }

  .form-actions button[b-l6nk4h1avt] {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .form-step[b-l6nk4h1avt] {
    padding: 20px;
  }

  .form-step h2[b-l6nk4h1avt] {
    font-size: 18px;
  }

  .step-description[b-l6nk4h1avt] {
    font-size: 14px;
  }
}

/* /Pages/Home.razor.rz.scp.css */
/* Note: Universal reset removed to prevent conflicts with global styles */

/* Page Container */
.page-container[b-7o17ykqhrj] {
  background-color: #fff;
  border-radius: 16px;
  margin: 0 16px;
}

/* Page Title */
.page-title[b-7o17ykqhrj] {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-title h1[b-7o17ykqhrj] {
  font-size: 28px;
  font-weight: 500;
  color: #111827;
  margin: 0;
}

/* Page Header Actions */
.page-header-actions[b-7o17ykqhrj] {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn-delete[b-7o17ykqhrj] {
  padding: 12px 20px;
  border: 1px solid #d1d5db;
  border-radius: 50px;
  width: 131px;
  height: 48px;
  background: #ffffff;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-delete:not(:disabled)[b-7o17ykqhrj] {
  background-color: #ef4444;
  color: #e5e7eb;
  border-color: #ef4444;
}

.btn-delete:hover:not(:disabled)[b-7o17ykqhrj] {
  background-color: #dc2626;
  border-color: #dc2626;
}

.btn-delete:disabled[b-7o17ykqhrj] {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #e5e7eb;
}

.btn-add[b-7o17ykqhrj] {
  padding: 10px 20px;
  border: none;
  width: 131px;
  height: 48px;
  border-radius: 50px;
  background: #005ecf;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add:hover[b-7o17ykqhrj] {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Role Tabs */
.role-tabs[b-7o17ykqhrj] {
  display: flex;
  margin: 0px 16px 0px 16px;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.tab[b-7o17ykqhrj] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px 12px 16px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  color: #42474e;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}

.tab:hover[b-7o17ykqhrj] {
  color: #374151;
}

.tab.active[b-7o17ykqhrj] {
  color: #005ecf;
  border-bottom-color: #005ecf;
}

.tab-icon[b-7o17ykqhrj] {
  width: 18px;
  height: 18px;
}

/* User List styles moved to Components/UserList.razor.css */

/* Responsive Design */
@media (max-width: 1024px) {
  .page-title[b-7o17ykqhrj] {
    padding: 24px 24px 0;
  }

  .role-tabs[b-7o17ykqhrj] {
    padding: 20px 24px 0;
    gap: 24px;
  }

  /* User list responsive styles moved to Components/UserList.razor.css */
}

@media (max-width: 768px) {
  .page-header-actions[b-7o17ykqhrj] {
    justify-content: space-between;
  }

  .page-title[b-7o17ykqhrj] {
    padding: 20px 20px 0;
  }

  .page-title h1[b-7o17ykqhrj] {
    font-size: 24px;
  }

  .role-tabs[b-7o17ykqhrj] {
    padding: 16px 20px 0;
    gap: 16px;
    overflow-x: auto;
  }

  /* User list responsive styles moved to Components/UserList.razor.css */
}

@media (max-width: 480px) {
  .page-header-actions[b-7o17ykqhrj] {
    flex-direction: column;
    gap: 12px;
  }

  .btn-delete[b-7o17ykqhrj],
  .btn-add[b-7o17ykqhrj] {
    width: 100%;
    justify-content: center;
  }

  .page-title[b-7o17ykqhrj] {
    padding: 16px 16px 0;
  }

  .page-title h1[b-7o17ykqhrj] {
    font-size: 20px;
  }

  .role-tabs[b-7o17ykqhrj] {
    padding: 12px 16px 0;
    gap: 12px;
  }

  .tab[b-7o17ykqhrj] {
    padding: 8px 0;
    font-size: 14px;
  }

  /* User list responsive styles moved to Components/UserList.razor.css */
}
/* /Pages/InviteHistory.razor.rz.scp.css */
.app-container[b-je8qg2mcvz] {
    display: flex;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.main-content[b-je8qg2mcvz] {
    flex: 1;
    width: 100%;
    background-color: #ffffff;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

.main-content.sidebar-collapsed[b-je8qg2mcvz] {
    margin-left: 0;
}

@media (max-width: 768px) {
    .main-content[b-je8qg2mcvz] {
        margin-left: 200px;
        transition: margin-left 0.3s ease;
    }
    
    .main-content.sidebar-collapsed[b-je8qg2mcvz] {
        margin-left: 60px;
    }
}

.top-header[b-je8qg2mcvz] {
    padding: 24px 32px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.organization-selector[b-je8qg2mcvz] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.org-info h2[b-je8qg2mcvz] {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.org-info p[b-je8qg2mcvz] {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.header-actions[b-je8qg2mcvz] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-secondary[b-je8qg2mcvz] {
    padding: 12px 24px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: #374151;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover[b-je8qg2mcvz] {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.page-container[b-je8qg2mcvz] {
    padding: 32px;
}

.search-container[b-je8qg2mcvz] {
    margin-bottom: 24px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px !important;
}

.search-container input[b-je8qg2mcvz]  {
    padding-right: 0px;
}

.debounced-search-input[b-je8qg2mcvz] {
    padding: 0px !important;
}

.search-input-wrapper[b-je8qg2mcvz] {
    position: relative;
    max-width: 500px;
}

.search-input[b-je8qg2mcvz] {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    color: #374151;
    transition: all 0.2s;
    box-sizing: border-box;
}

.search-input:focus[b-je8qg2mcvz] {
    outline: none;
    border-color: #005ecf;
    box-shadow: 0 0 0 3px rgba(0, 94, 207, 0.1);
}

.search-input[b-je8qg2mcvz]::placeholder {
    color: #9ca3af;
}

.search-clear-btn[b-je8qg2mcvz] {
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.search-clear-btn:hover[b-je8qg2mcvz] {
    background: #f3f4f6;
    color: #374151;
}

.invitations-table-container[b-je8qg2mcvz] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    margin-top: 20px;
}

.invitations-table[b-je8qg2mcvz] {
    width: 100%;
    border-collapse: collapse;
}

.invitations-table thead[b-je8qg2mcvz] {
    background: #f5f5f5;
}

.invitations-table th[b-je8qg2mcvz] {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
}

.invitations-table td[b-je8qg2mcvz] {
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
}

.invitations-table tbody tr:hover[b-je8qg2mcvz] {
    background: #f9f9f9;
}

.status-badge[b-je8qg2mcvz] {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.status-pending[b-je8qg2mcvz] {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-accepted[b-je8qg2mcvz] {
    background: #d4edda;
    color: #155724;
}

.status-badge.status-rejected[b-je8qg2mcvz] {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.status-expired[b-je8qg2mcvz] {
    background: #e2e3e5;
    color: #383d41;
}

.empty-state[b-je8qg2mcvz] {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.empty-state h3[b-je8qg2mcvz] {
    color: #333;
    margin-bottom: 10px;
}

.empty-state p[b-je8qg2mcvz] {
    color: #666;
    margin-bottom: 20px;
}

.error-message[b-je8qg2mcvz] {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.error-icon[b-je8qg2mcvz] {
    font-size: 48px;
    margin-bottom: 16px;
}

.error-message h3[b-je8qg2mcvz] {
    color: #d32f2f;
    margin-bottom: 10px;
}

.error-message p[b-je8qg2mcvz] {
    color: #666;
    margin-bottom: 20px;
}

.page-loading-container[b-je8qg2mcvz] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.page-loading-spinner[b-je8qg2mcvz] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #285EC8;
    border-radius: 50%;
    animation: spin-b-je8qg2mcvz 1s linear infinite;
}

@keyframes spin-b-je8qg2mcvz {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* /Pages/Location.razor.rz.scp.css */
.location-container[b-y3d2qvd040] {
  padding: 16px;
  background-color: #fff;
  margin-left: 20px;
  margin-right: 12px;
  border-radius: 16px;
}

.header-container[b-y3d2qvd040] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  margin-bottom: 16px;
}

.header-content[b-y3d2qvd040] {
  line-height: 36px;
  font-size: 28px;
  font-weight: 500;
}

.header-actions[b-y3d2qvd040] {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn-delete[b-y3d2qvd040] {
  padding: 12px 20px;
  border: 1px solid #d1d5db;
  border-radius: 50px;
  height: 48px;
  background: #ffffff;
  color: #374151;
  font-size: 16px;
  font-weight: 500;
  width: auto;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-delete:not(:disabled)[b-y3d2qvd040] {
  background-color: #ef4444;
  color: #e5e7eb;
  border-color: #ef4444;
}

.btn-delete:hover:not(:disabled)[b-y3d2qvd040] {
  background-color: #dc2626;
  border-color: #dc2626;
}

.btn-delete:disabled[b-y3d2qvd040] {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #e5e7eb;
}

.btn-add[b-y3d2qvd040] {
  padding: 10px 20px;
  border: none;
  height: 48px;
  border-radius: 50px;
  background: #005ecf;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add:hover[b-y3d2qvd040] {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Location Cards Container styles moved to Components/StoreList.razor.css */

/* /Pages/Login.razor.rz.scp.css */
/* Scoped styles for the Login page split layout */

.login-split[b-rh1ohbv7xp] {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
    padding: 24px 24px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 5%;
    overflow: hidden; /* avoid page scroll */
}

.card-branding h1[b-rh1ohbv7xp]{
    text-align: center;
    color: #0b61d6;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 1px;
}

.promo[b-rh1ohbv7xp] { max-width: 680px; display:flex; flex-direction:column; justify-content:center; padding-left: 24px; }

.promo-title[b-rh1ohbv7xp] { font-size: clamp(32px, 6vw, 56px); line-height: 1.15; font-weight:400; margin: 0 0 16px 0; letter-spacing: -0.02em; }

.promo-em[b-rh1ohbv7xp] { font-weight: 700; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; }

.promo-points[b-rh1ohbv7xp] { margin: 8px 0 12px 22px; }

.promo-points li[b-rh1ohbv7xp] {
    margin: 8px 0;
}

.list-bold[b-rh1ohbv7xp]{
    font-weight: 600;
}

.promo-copy[b-rh1ohbv7xp] { margin-top: 8px; color: rgba(0,0,0,.75); max-width: 620px; }

.auth[b-rh1ohbv7xp] { 
    display: flex; 
    justify-content: flex-start; 
    align-items: flex-start; 
}

/* Modern Auth Card - Glassmorphism + Gradient Background */
.auth-card-modern[b-rh1ohbv7xp] {
    width: 100%;
    max-width: 440px;
    padding: 64px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 20px 60px rgba(19, 103, 230, 0.12),
        0 8px 24px rgba(2, 18, 46, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px) saturate(180%);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient overlay for depth */
.auth-card-modern[b-rh1ohbv7xp]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(19, 103, 230, 0.2), transparent);
}

/* Brand logo section with glow effect */
.auth-brand[b-rh1ohbv7xp] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
}

.auth-logo-wrapper[b-rh1ohbv7xp] {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.auth-logo[b-rh1ohbv7xp] {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(19, 103, 230, 0.2));
    transition: transform 0.3s ease;
}

.auth-logo:hover[b-rh1ohbv7xp] {
    transform: scale(1.05);
}

.auth-logo-glow[b-rh1ohbv7xp] {
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(19, 103, 230, 0.25) 0%, transparent 70%);
    border-radius: 20px;
    opacity: 0;
    animation: pulse-glow-b-rh1ohbv7xp 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-glow-b-rh1ohbv7xp {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .auth-logo-glow[b-rh1ohbv7xp],
    .login-button-modern[b-rh1ohbv7xp]::before,
    .key-icon[b-rh1ohbv7xp],
    .arrow-icon[b-rh1ohbv7xp] {
        animation: none !important;
        transition: none !important;
    }
    
    .auth-logo:hover[b-rh1ohbv7xp] {
        transform: none;
    }
}

/* Tagline section */
.auth-tagline[b-rh1ohbv7xp] {
    text-align: center;
    margin-bottom: 28px;
}

.auth-tagline-text[b-rh1ohbv7xp] {
    font-size: 15px;
    font-weight: 500;
    color: #64748b;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.5;
}

/* Action container */
.auth-action-container[b-rh1ohbv7xp] {
    margin-bottom: 20px;
}

/* Responsive: stack on small screens */
@media (max-width: 1200px) {
    .login-split[b-rh1ohbv7xp] { grid-template-columns: 1fr 380px; gap: 36px; }
}

@media (max-width: 1080px) {
    .login-split[b-rh1ohbv7xp] {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 16px;
    }

    .promo[b-rh1ohbv7xp] {
        order: 2;
    }

    .auth[b-rh1ohbv7xp] {
        order: 1;
    }

    .promo-title[b-rh1ohbv7xp] { font-size: clamp(28px, 6vw, 42px); line-height: 1.15; }
    .promo-copy[b-rh1ohbv7xp] { display: none; }
}

/* Prevent page scroll specifically on login route container */
body:has(.login-split)[b-rh1ohbv7xp] { overflow: hidden; }

.header[b-rh1ohbv7xp] {
    background: transparent;
    color: #fff;
    width: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    border-radius: 0;
    margin: 0;
    flex-shrink: 0;
    padding: 12px 16px;
    position: sticky;
    top: 0;
    z-index: 10;
}
 
.header-inner[b-rh1ohbv7xp] {
    width: 100%;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0b61d6;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(1, 58, 150, 0.28);
}

.logo[b-rh1ohbv7xp] {
    width: 32px;
    height: 32px;
    mix-blend-mode: lighten;
    border-radius: 6px;
}
.brand[b-rh1ohbv7xp] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px 0;
}

.header-actions[b-rh1ohbv7xp] {
    display: flex;
    align-items: center;
    gap: 12px;
}
 
.icon-btn[b-rh1ohbv7xp] {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
}

.icon-btn:hover[b-rh1ohbv7xp] {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

.icon-btn[b-rh1ohbv7xp]  svg {
    width: 38px;
    height: 38px;
    display: block;
}

.signup-container[b-rh1ohbv7xp] {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    width: 100%;
    background: linear-gradient(180deg, #f7fafc 0%, #eef2f7 60%, #e8eef7 100%);
    position: relative;
}

.signup-container[b-rh1ohbv7xp]::before {
    content: "";
    inset: -10% -20% auto -20%;
    height: 50vh;
    background: radial-gradient(closest-side, rgba(0, 94, 207, 0.08), transparent 70%);
    pointer-events: none;
}

.signup-card[b-rh1ohbv7xp] {
    width: 100%;
    max-width: 520px;
    border: 1px solid #e6ebf2;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.card-header[b-rh1ohbv7xp] {
    width: 100%;
    text-align: center;
    margin-bottom: 0.75rem;
    background: transparent;
}

.card-title[b-rh1ohbv7xp] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.card-subtitle[b-rh1ohbv7xp] {
    margin: 0.5rem 0 0 0;
    color: #475569;
    font-size: 0.95rem;
}

/* Ensure header looks good inside modern auth card */
.auth-card-modern .card-header[b-rh1ohbv7xp] { margin-bottom: 1rem; }
.auth-card-modern .card-title[b-rh1ohbv7xp] { font-size: 1.35rem; }
.auth-card-modern .card-subtitle[b-rh1ohbv7xp] { font-size: 0.95rem; }

/* Modern Login Button - Premium Design with Animations */
.login-button-modern[b-rh1ohbv7xp] {
    width: 100%;
    height: 58px;
    padding: 0 1.5rem;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, #1367e6 0%, #0a57c6 50%, #0052d9 100%);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 
        0 8px 20px rgba(19, 103, 230, 0.28),
        0 4px 12px rgba(19, 103, 230, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect on button */
.login-button-modern[b-rh1ohbv7xp]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.login-button-modern:hover[b-rh1ohbv7xp]::before {
    left: 100%;
}

.login-button-modern:hover:not(:disabled)[b-rh1ohbv7xp] {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1570ef 0%, #0d60e0 50%, #005ce6 100%);
    box-shadow: 
        0 12px 28px rgba(19, 103, 230, 0.36),
        0 6px 16px rgba(19, 103, 230, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.login-button-modern:active:not(:disabled)[b-rh1ohbv7xp] {
    transform: translateY(0);
    box-shadow: 
        0 6px 16px rgba(19, 103, 230, 0.24),
        0 2px 8px rgba(19, 103, 230, 0.16);
}

.login-button-modern:focus-visible[b-rh1ohbv7xp] {
    outline: none;
    box-shadow: 
        0 0 0 4px rgba(19, 103, 230, 0.2),
        0 8px 20px rgba(19, 103, 230, 0.28),
        0 4px 12px rgba(19, 103, 230, 0.16);
}

.login-button-modern:disabled[b-rh1ohbv7xp] {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
}

/* Icon styling in button */
.login-button-modern .key-icon[b-rh1ohbv7xp],
.login-button-modern .arrow-icon[b-rh1ohbv7xp] {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.login-button-modern:hover:not(:disabled) .key-icon[b-rh1ohbv7xp] {
    transform: rotate(-15deg) scale(1.1);
}

.login-button-modern:hover:not(:disabled) .arrow-icon[b-rh1ohbv7xp] {
    transform: translateX(4px);
}

.login-button-modern span[b-rh1ohbv7xp] {
    flex: 1;
    text-align: center;
}

/* Modern Spinner */
.spinner-modern[b-rh1ohbv7xp] {
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top: 2.5px solid #ffffff;
    border-radius: 50%;
    animation: spin-modern-b-rh1ohbv7xp 0.8s linear infinite;
}

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

/* Trust indicator section */
.auth-trust[b-rh1ohbv7xp] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.shield-icon[b-rh1ohbv7xp] {
    width: 16px;
    height: 16px;
    color: #64748b;
    flex-shrink: 0;
}

.trust-text[b-rh1ohbv7xp] {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    letter-spacing: -0.01em;
}

.oidc-login[b-rh1ohbv7xp] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.oidc-login:hover[b-rh1ohbv7xp] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.spinner[b-rh1ohbv7xp] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin-b-rh1ohbv7xp 1s linear infinite;
}

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

.login-button:disabled[b-rh1ohbv7xp] {
    opacity: 0.6;
    cursor: not-allowed;
}

.login-button:disabled:hover[b-rh1ohbv7xp] {
    transform: none;
    box-shadow: none;
}

.login-button:focus-visible[b-rh1ohbv7xp] {
    outline: 0;
    box-shadow: 0 0 0 4px rgba(19, 103, 230, 0.24), 0 10px 22px rgba(19, 103, 230, 0.26);
}

/* Responsive adjustments for modern auth card */
@media (max-width: 1080px) {
    .auth-card-modern[b-rh1ohbv7xp] { 
        max-width: 480px; 
        margin: 8px auto 0;
        padding: 28px 24px;
    }
    
    .auth-logo[b-rh1ohbv7xp] {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 640px) {
    .auth-card-modern[b-rh1ohbv7xp] { 
        max-width: 100%; 
        padding: 24px 20px; 
        border-radius: 16px;
        margin-top: 0;
    }
    
    .login-button-modern[b-rh1ohbv7xp] { 
        height: 54px; 
        font-size: 1rem;
        padding: 0 1.25rem;
    }
    
    .auth-brand[b-rh1ohbv7xp] {
        margin-bottom: 20px;
    }
    
    .auth-tagline[b-rh1ohbv7xp] {
        margin-bottom: 24px;
    }
    
    .auth-tagline-text[b-rh1ohbv7xp] {
        font-size: 14px;
    }
    
    .auth-logo[b-rh1ohbv7xp] {
        width: 52px;
        height: 52px;
    }

    .auth-card-modern .card-title[b-rh1ohbv7xp] { font-size: 1.25rem; }
    .auth-card-modern .card-subtitle[b-rh1ohbv7xp] { font-size: 0.9rem; }
}

@media (max-width: 640px) {
    .signup-container[b-rh1ohbv7xp] {
        padding: 1rem;
    }
    
    .signup-card[b-rh1ohbv7xp] {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
}
/* /Pages/Settings.razor.rz.scp.css */
/* Top Header Styles - Ensure proper display matching Location page */
:global(.top-header)[b-2e6v117obu] {
    padding: 12px 12px 16px 20px !important;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


:global(.organization-selector)[b-2e6v117obu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: #fff;
    cursor: pointer;
    padding: 12px;
    min-width: 300px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

:global(.organization-selector:hover)[b-2e6v117obu] {
    background-color: #f8f9fa;
}

:global(.org-info h2)[b-2e6v117obu] {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

:global(.org-info p)[b-2e6v117obu] {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

:global(.header-actions)[b-2e6v117obu] {
    display: flex;
    align-items: center;
    gap: 12px;
}

:global(.search-container)[b-2e6v117obu] {
    position: relative;
    display: flex;
    align-items: center;
    width: 300px;
    max-width: 720px;
    height: 46px;
    background: #FFFFFF;
    border-radius: 50px;
    padding: 8px 8px 8px 16px;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

:global(.search-container input)[b-2e6v117obu] {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #374151;
    padding-right: 50px;
}

:global(.search-container input::placeholder)[b-2e6v117obu] {
    color: #9CA3AF;
}

:global(.search-icon-wrapper)[b-2e6v117obu] {
    position: absolute;
    right: 4px;
    width: 38px;
    height: 38px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

:global(.search-icon-wrapper svg)[b-2e6v117obu] {
    width: 18px;
    height: 18px;
    color: #6B7280;
}

@media (max-width: 1024px) {
    :global(.top-header)[b-2e6v117obu] {
        padding: 20px 24px;
    }
    
    :global(.search-container)[b-2e6v117obu] {
        width: 250px;
    }
    
    :global(.organization-selector)[b-2e6v117obu] {
        min-width: initial;
    }
}

@media (max-width: 768px) {
    :global(.top-header)[b-2e6v117obu] {
        padding: 16px 20px;
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    :global(.header-actions)[b-2e6v117obu] {
        justify-content: space-between;
    }
    
    :global(.search-container)[b-2e6v117obu] {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    :global(.top-header)[b-2e6v117obu] {
        padding: 12px 16px;
    }
    
    :global(.header-actions)[b-2e6v117obu] {
        flex-direction: column;
        gap: 12px;
    }
    
    :global(.search-container)[b-2e6v117obu] {
        width: 100%;
    }
}

/* Settings Container */
.settings-container[b-2e6v117obu] {
    background-color: #fff;
    border-radius: 16px;
    margin: 0 16px;
    padding: 12px 16px;
}


.header-content[b-2e6v117obu] {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 28px;
}

.settings-header h1[b-2e6v117obu] {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.help-icon[b-2e6v117obu] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: opacity 0.2s;
}

/* .help-icon:hover {
    opacity: 0.7;
} */

/* Settings Form */
.settings-form[b-2e6v117obu] {
    padding-top: 20px;
}

.form-row[b-2e6v117obu] {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.form-group[b-2e6v117obu] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group-small[b-2e6v117obu] {
    flex: 0 0 120px;
    min-width: 120px;
}

input[b-2e6v117obu], select[b-2e6v117obu] {
    height: 44px;
}

/* Form Inputs */
.form-select[b-2e6v117obu] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #111827;
    background-color: #fff;
    transition: all 0.2s;
    outline: none;
}

.form-input[b-2e6v117obu] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    font-size: 14px;
    font-weight: 400;
    color: #111827;
    background-color: #fff;
    transition: all 0.2s;
    outline: none;
    padding-left: 20px !important;
}

.form-input:focus[b-2e6v117obu],
.form-select:focus[b-2e6v117obu] {
    border: 1px;
    border-color: #005ECF;
    box-shadow: 0 0 0 3px rgba(0, 94, 207, 0.1);
}


.form-input[b-2e6v117obu]::placeholder {
    color: #9CA3AF;
}

.form-select[b-2e6v117obu] {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
}

/* Form Divider */
.form-divider[b-2e6v117obu] {
    height: 1px;
    background-color: #E5E7EB;
    margin: 12px 0;
}

/* Form Actions */
.form-actions[b-2e6v117obu] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    height: 80px;
    align-items: center;
}

.btn-cancel[b-2e6v117obu], .btn-update[b-2e6v117obu] {
    width: 92px;
    height: 48px;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    height: fit-content;
}

/* Buttons */
.btn-cancel[b-2e6v117obu] {
    border: 1px solid #D1D5DB;
    background: #ffffff;
    color: #374151;

}

.btn-cancel:hover[b-2e6v117obu] {
    background-color: #f9fafb;
    border-color: #9CA3AF;
}

.btn-update[b-2e6v117obu] {
    border: none;
    background: #005ECF;
    color: white;
}

.btn-update:hover[b-2e6v117obu] {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 94, 207, 0.3);
}

.btn-update:active[b-2e6v117obu] {
    transform: translateY(0);
}

.btn-update:disabled[b-2e6v117obu] {
    border: 1px solid #d1d5db;
    color: #9ca3af;
    background: #f3f4f6;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.validation-message[b-2e6v117obu] {
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    display: inline-block;
}

.modal-overlay[b-2e6v117obu] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.confirmation-overlay[b-2e6v117obu] {
    z-index: 4000;
}

.confirmation-modal[b-2e6v117obu] {
    background: #ffffff;
    border-radius: 12px;
    width: min(420px, 90vw);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.confirmation-modal h3[b-2e6v117obu] {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.confirmation-modal p[b-2e6v117obu] {
    margin: 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.confirmation-modal .modal-actions[b-2e6v117obu] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .settings-container[b-2e6v117obu] {
        margin: 0 12px;
    }
    
    .settings-header[b-2e6v117obu] {
        padding: 20px 12px;
    }
    
    .settings-form[b-2e6v117obu] {
        padding: 20px 12px;
    }
}

@media (max-width: 768px) {
    .settings-container[b-2e6v117obu] {
        margin: 0 8px;
    }
    
    .settings-header[b-2e6v117obu] {
        padding: 16px 12px;
    }
    
    .settings-header h1[b-2e6v117obu] {
        font-size: 22px;
    }
    
    .settings-form[b-2e6v117obu] {
        padding: 16px 12px;
    }
    
    .form-row[b-2e6v117obu] {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-group-small[b-2e6v117obu] {
        flex: 1;
        min-width: auto;
    }
    
    .form-actions[b-2e6v117obu] {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-cancel[b-2e6v117obu],
    .btn-update[b-2e6v117obu] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .settings-container[b-2e6v117obu] {
        margin: 0 4px;
        border-radius: 12px;
    }
    
    .settings-header[b-2e6v117obu] {
        padding: 12px 8px;
    }
    
    .settings-header h1[b-2e6v117obu] {
        font-size: 18px;
    }
    
    .settings-form[b-2e6v117obu] {
        padding: 12px 8px;
    }
    
    .form-input[b-2e6v117obu],
    .form-select[b-2e6v117obu] {
        padding: 10px 12px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Focus states for accessibility */
.form-input:focus-visible[b-2e6v117obu],
.form-select:focus-visible[b-2e6v117obu],
.btn-cancel:focus-visible[b-2e6v117obu],
.btn-update:focus-visible[b-2e6v117obu] {
    outline: 2px solid #005ECF;
    outline-offset: 2px;
}

/* Loading states */
.btn-update:disabled[b-2e6v117obu] {
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-cancel:disabled[b-2e6v117obu] {
    background-color: #f3f4f6;
    color: #9CA3AF;
    cursor: not-allowed;
}


.details-container[b-2e6v117obu] {
    border-radius: 8px;
    margin-top: 24px;
    border: 1px solid #e0e0e0;
    padding: 12px;
}

.details-form-row[b-2e6v117obu] {
    height: 56px;
}

.details-header[b-2e6v117obu] {
    font-weight: 500;
    height: 24px;
    font-size: 16px;
}

.details-form-divider[b-2e6v117obu] {
    margin: 16px 0px;
    border-bottom: 1px solid #e0e0e0;
}

.details-form-text[b-2e6v117obu] {
    height: 20px;
    font-weight: 500;
    font-size: 14px;
}



/* /Shared/Components/ErrorBoundary/AppErrorBoundary.razor.rz.scp.css */
.error-container[b-95opalt00y] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 40px 20px;
    text-align: center;
}

.error-container h3[b-95opalt00y] {
    color: #ef4444;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.error-container p[b-95opalt00y] {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 600px;
}

.error-container button[b-95opalt00y] {
    background: #005ecf;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.error-container button:hover[b-95opalt00y] {
    background: #005dcfcb;
}

/* /Shared/Components/Forms/FormGroup.razor.rz.scp.css */
.form-group-wrapper[b-i3tgf48l58] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group-label[b-i3tgf48l58] {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin: 0;
}

.form-group-content[b-i3tgf48l58] {
    width: 100%;
}

.error-text[b-i3tgf48l58] {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.25rem;
    display: block;
    line-height: 1.4;
}

.form-hint[b-i3tgf48l58] {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
    display: block;
}

.required[b-i3tgf48l58] {
    color: #ef4444;
}

/* /Shared/Components/Forms/ValidatedTextInput.razor.rz.scp.css */
.form-group[b-wk28jalz2h] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label[b-wk28jalz2h] {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin: 0;
}

.form-input[b-wk28jalz2h] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
    background: white;
    height: 48px;
}

.form-input:focus[b-wk28jalz2h] {
    outline: none;
    border-color: #005ecf;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-input[b-wk28jalz2h]::placeholder {
    color: #9ca3af;
}

.form-input.input-error[b-wk28jalz2h] {
    border-color: #ef4444;
    outline: 1px solid #ef4444;
}

.form-input.input-error:focus[b-wk28jalz2h] {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input:disabled[b-wk28jalz2h] {
    background: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

.error-text[b-wk28jalz2h] {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.25rem;
    display: block;
    line-height: 1.4;
}

.form-hint[b-wk28jalz2h] {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
    display: block;
}

.required[b-wk28jalz2h] {
    color: #ef4444;
}

/* /Shared/Components/ModalContainer.razor.rz.scp.css */
.modal-overlay[b-x2hf86zh4g] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.modal-container[b-x2hf86zh4g] {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-header[b-x2hf86zh4g] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
    background: white;
}

.modal-header h2[b-x2hf86zh4g] {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    color: #111827;
}

.close-button[b-x2hf86zh4g] {
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 38px;
    font-size: 24px;
    color: #6b7280;
}

.close-button:hover[b-x2hf86zh4g] {
    background-color: #f3f4f6;
}

.modal-body[b-x2hf86zh4g] {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
    background: #f9fafb;
}

