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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fbfaff;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

textarea {
  font-family: inherit;
}

.container {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* Sidebar Styles */
.sidebar {
  background-color: #fff;
  width: 240px;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
  transition: width 0.3s ease;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100vh;
  flex-shrink: 0;
}

.sidebar.collapsed {
  width: 80px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #1434cc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.sidebar.collapsed .logo-text {
  opacity: 0;
  width: 0;
}

.logo-title {
  font-size: 20px;
  font-weight: 700;
  color: #1434cc;
}

.logo-subtitle {
  font-size: 12px;
  color: #999;
}

.toggle-btn {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 18px;
  padding: 8px;
  transition: all 0.3s;
  flex-shrink: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  rotate: 180deg;
}

.toggle-btn:hover {
  background-color: #f3f4f6;
  color: #1434cc;
}

.sidebar.collapsed .toggle-btn {
  color: #1434cc;
  transform: rotate(180deg);
  position: absolute;
  right: 1px;
  right: -10px;
}

.toggle-btn svg {
  width: 16px;
  height: 16px;
}

.nav-menu {
  list-style: none;
}

.nav-item {
  margin-bottom: 5px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: #666;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav-link:hover {
  background-color: #f3f4f6;
  color: #1434cc;
}

.nav-link.active {
  background-color: #1434cc;
  color: #ffffff;
}

.nav-service-prices {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 12px 10px;
  margin-left: 20%;
  color: #666;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  white-space: nowrap;
  position: relative;
}

.nav-service-prices::before {
  content: "";
  display: block;
  width: 1.3px;
  height: 100%;
  background-color: #e7e4f1;
  position: absolute;
  left: 0;
  top: 0;
}

.nav-service-prices:hover {
  background-color: #f3f4f6;
  color: #1434cc;
}

.nav-link i {
  width: 18px;
  font-size: 16px;
  flex-shrink: 0;
}

.nav-text {
  transition: opacity 0.3s;
}

.sidebar.collapsed .nav-text {
  opacity: 0;
  width: 0;
}

.sidebar-footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-top: 1px solid #f0f0f0;
  margin-top: 20px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: #1434cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  flex-shrink: 0;
}

.user-info {
  transition: opacity 0.3s;
}

.sidebar.collapsed .user-info {
  opacity: 0;
  width: 0;
}

.user-name {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.user-status {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 30px;
  overflow-x: hidden;
}

/* dasjboard  */

.dashboard-page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1f2937;
}

/* dashboard progress bar----------- */

.dashboard-progressbar-container {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-progressbar-header h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.dashboard-progressbar-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.dashboard-progressbar-bar-container {
  width: 100%;
  height: 8px;
  background: #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.dashboard-progressbar-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6 0%, #1434cc 100%);
  width: 20%;
  transition: width 0.3s ease;
  border-radius: 10px;
}

.dashboard-progressbar-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.dashboard-progressbar-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.dashboard-progressbar-step:hover {
  transform: translateY(-2px);
}

.dashboard-progressbar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.dashboard-progressbar-step.completed .dashboard-progressbar-icon {
  background: #8b5cf6;
  color: white;
}

.dashboard-progressbar-step.pending .dashboard-progressbar-icon {
  background: #e8e8e8;
  color: #999;
}

.dashboard-progressbar-step:hover .dashboard-progressbar-icon {
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.dashboard-progressbar-label {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.dashboard-progressbar-step.completed .dashboard-progressbar-label {
  color: #333;
}

@media (max-width: 768px) {
  .dashboard-progressbar-steps {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .dashboard-progressbar-step {
    min-width: calc(50% - 1rem);
  }

  .dashboard-progressbar-container {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .dashboard-progressbar-step {
    min-width: 100%;
  }
}

/* Stats Cards ------------- */
.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 20px;
}

.dashboard-stat-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-stat-info h3 {
  color: #999;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}

.dashboard-stat-info p {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
}

.dashboard-stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.dashboard-stat-icon.purple {
  background-color: #f3e8ff;
  color: #1434cc;
}

.dashboard-stat-icon.pink {
  background-color: #fce7f3;
  color: #ec4899;
}

.dashboard-stat-icon.green {
  background-color: #dcfce7;
  color: #22c55e;
}

.dashboard-stat-icon.blue {
  background-color: #dbeafe;
  color: #3b82f6;
}

/* Section */
.dashboard-section {
  margin-bottom: 40px;
}

.dashboard-section-header {
  margin-bottom: 15px;
}

.dashboard-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 5px;
}

.dashboard-section-subtitle {
  color: #666;
  font-size: 14px;
}

/* Cards */
.dashboard-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 20px;
}

.dashboard-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dashboard-card-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: #fce7f3;
  color: #ec4899;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 15px;
}

.dashboard-card-price {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.dashboard-card-title {
  color: #1434cc;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 15px;
}

.dashboard-card-location {
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
}

.dashboard-card-date {
  color: #666;
  font-size: 13px;
  margin-bottom: 20px;
}

.dashboard-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.dashboard-card-item {
  color: #666;
  font-size: 14px;
}

.dashboard-card-amount {
  color: #1f2937;
  font-weight: 600;
  font-size: 16px;
}

.ndashboard-container {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.ndashboard-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.ndashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ndashboard-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.ndashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ndashboard-card-secondary:hover {
  background:#eff6ff;
}

.ndashboard-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
}

.ndashboard-card-secondary .ndashboard-icon-wrapper {
  /* background: linear-gradient(135deg, #f3a3d8 0%, #e891cf 100%); */
  background: #dbeafe;
}

.ndashboard-icon {
  font-size: 22px;
}

.ndashboard-card-secondary .ndashboard-icon {
  color: #1434cc;
}

.ndashboard-content {
  flex: 1;
}

.ndashboard-card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.ndashboard-card-primary .ndashboard-card-title {
  color: #4a1447;
}

.ndashboard-card-secondary .ndashboard-card-title {
  color: #1a1a1a;
}

.ndashboard-card-description {
  font-size: 14px;
  line-height: 1.5;
}

.ndashboard-card-primary .ndashboard-card-description {
  color: #6b3a64;
}

.ndashboard-card-secondary .ndashboard-card-description {
  color: #666666;
}

@media (max-width: 768px) {
  .ndashboard-grid {
    grid-template-columns: 1fr;
  }

  .ndashboard-container {
    padding: 24px;
  }

  .ndashboard-title {
    font-size: 24px;
  }
}

/* Jobs List Page */

.joblist-container {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.joblist-title {
  font-size: 36px;
  color: #1d1d1f;
  margin-bottom: 30px;
  font-weight: 700;
}

.joblist-table-container {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.joblist-table {
  width: 100%;
  border-collapse: collapse;
}

.joblist-thead {
  background-color: #f9f9fb;
}

.joblist-th {
  text-align: left;
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #6e6e73;
  text-transform: capitalize;
  border-bottom: 1px solid #e5e5ea;
}

.joblist-td {
  padding: 14px;
  font-size: 15px;
  color: #1d1d1f;
  border-bottom: 1px solid #e5e5ea;
}

.joblist-tbody tr:last-child .joblist-td {
  border-bottom: none;
}

.joblist-row:hover {
  background-color: #fafafa;
}

.joblist-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.joblist-badge-yes {
  background-color: #f3e8ff;
  color: #1434cc;
}

.joblist-badge-no {
  background-color: #f3f4f6;
  color: #6b7280;
}

.joblist-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* background: linear-gradient(135deg, #1434cc 0%, #1434cc  100%); */
  background: #1434cc ;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.joblist-view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 52, 202, 0.4);
}

.joblist-view-btn:active {
  transform: translateY(0);
}

.joblist-price {
  font-weight: 600;
  color: #1d1d1f;
}

/* Responsive */
@media (max-width: 768px) {
  .joblist-title {
    font-size: 28px;
  }

  .joblist-th,
  .joblist-td {
    padding: 16px;
    font-size: 13px;
  }

  .joblist-view-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* job view--------------------------------------  */
.jobview-container {
  margin: 0 auto;
  background-color: #f5f5f7;
  color: #1f2937;
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.jobview-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.jobview-back-btn {
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s;
}

.jobview-back-btn:hover {
  background-color: #f3f4f6;
}

.jobview-page-title {
  font-size: 28px;
  font-weight: 600;
  color: #1f2937;
}

.jobview-content-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 20px;
}

.jobview-form-section,
.jobview-notes-section {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.jobview-form-group {
  margin-bottom: 24px;
}

.jobview-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.jobview-form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: #1f2937;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s;
}

.jobview-form-input:focus {
  outline: none;
  border-color: #1434cc;
  background-color: white;
}

.jobview-form-input::placeholder {
  color: #9ca3af;
}

textarea.jobview-form-input {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

select.jobview-form-input {
  cursor: pointer;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.jobview-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.jobview-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.jobview-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.jobview-checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #1434cc;
}

.jobview-checkbox-item label {
  font-size: 15px;
  color: #1f2937;
  cursor: pointer;
  user-select: none;
}

.jobview-save-btn {
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  background: #1434cc;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.jobview-save-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(20, 52, 202, 0.3);
}

.jobview-save-btn:active {
  transform: translateY(0);
}

/* Notes Section */
.jobview-notes-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
}

.jobview-notes-input {
  width: 100%;
  min-height: 150px;
  padding: 12px 16px;
  font-size: 14px;
  color: #1f2937;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  resize: vertical;
  font-family: inherit;
  margin-bottom: 15px;
}

.jobview-notes-input:focus {
  outline: none;
  border-color: #1434cc;
  background-color: white;
}

.jobview-comment-btn {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  color: white;
  background: #1434cc;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
  margin-bottom: 20px;
}

.jobviewb-preview-btn {
  font-weight: 400;
  margin-right: 30px;
}

.jobview-comment-btn:hover {
  transform: translateY(-1px);
}

.jobview-comment-meta {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}

.jobview-comment-label {
  display: inline-block;
  padding: 6px 14px;
  background-color: #f3f4f6;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  margin-bottom: 20px;
}

.jobview-action-buttons {
  display: flex;
  gap: 12px;
}

.jobview-update-btn,
.jobview-delete-btn {
  flex: 1;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.jobview-update-btn {
  color: #1f2937;
  background: white;
  border: 1px solid #e5e7eb;
}

.jobview-update-btn:hover {
  background-color: #f9fafb;
}

.jobview-delete-btn {
  color: white;
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.jobview-delete-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .jobview-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .jobview-page-title {
    font-size: 20px;
  }

  .jobview-form-section,
  .jobview-notes-section {
    padding: 20px;
  }

  .jobview-form-row {
    grid-template-columns: 1fr;
  }
}

.jobviewb-container {
  margin-top: 20px;
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.jobviewb-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.jobviewb-header-content {
  flex: 1;
}

.jobviewb-title {
  font-size: 36px;
  font-weight: 700;
  color: #1434cc;
  margin-bottom: 8px;
}

.jobviewb-subtitle {
  font-size: 15px;
  color: #999;
  font-weight: 400;
}

.jobviewb-total {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.jobviewb-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
}

.jobviewb-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.jobviewb-table-header {
  background: #fafafa;
}

.jobviewb-table-header th {
  padding: 18px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #e5e5e5;
}

.jobviewb-table-row {
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

.jobviewb-table-row:hover {
  background: #eff6ff;
}

.jobviewb-table-row td {
  padding: 12px 20px;
  font-size: 15px;
}

.jobviewb-created {
  color: #6b7280;
  font-weight: 500;
}

.jobviewb-category {
  color: #333;
  font-weight: 500;
}

.jobviewb-location {
  color: #a73cdd;
  font-weight: 700;
}

.jobviewb-amount {
  color: #1434cc;
  font-weight: 700;
  font-size: 16px;
}

.jobviewb-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.jobviewb-status-accepted {
  background: #0bcb8b;
  box-shadow: 0 4px 10px rgba(11, 203, 139, 0.4);
  color: white;
}

.jobviewb-status-expired {
  background: #f3f4f6;
  box-shadow: 0 3px 8px rgba(107, 114, 128, 0.2);
  color: #6b7280;
}

.jobviewb-status i {
  font-size: 12px;
}

.jobviewb-action-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.jobviewb-action-outlined {
  background: transparent;
  color: #1434cc;
  border: none;
}

.jobviewb-action-outlined:hover {
  color: #ffff;
  background: #1434cc;
}

@media (max-width: 1200px) {
  .jobviewb-table-wrapper {
    overflow-x: scroll;
  }

  .jobviewb-table {
    min-width: 1000px;
  }
}

@media (max-width: 768px) {
  .jobviewb-container {
    padding: 20px;
  }

  .jobviewb-title {
    font-size: 28px;
  }

  .jobviewb-header {
    flex-direction: column;
    gap: 16px;
  }

  .jobviewb-table-header th,
  .jobviewb-table-row td {
    padding: 12px 16px;
    font-size: 14px;
  }

  .jobviewb-amount {
    font-size: 15px;
  }

  .jobviewb-action-button {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .jobviewb-container {
    padding: 16px;
    border-radius: 12px;
  }

  .jobviewb-title {
    font-size: 24px;
  }

  .jobviewb-subtitle {
    font-size: 13px;
  }
}

/* job requirement css-------------------------------- */

.jobrequirements-classname-container {
  background-color: #fbfaff;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
  min-height: 78vh;
}

.jobrequirements-classname-title {
  color: #2d3748;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}

.jobrequirements-classname-subtitle {
  color: #718096;
  font-size: 14px;
  margin-bottom: 24px;
}

.jobrequirements-classname-alert-box {
  background-color: #fce7f3;
  border-radius: 8px;
  padding: 16px 16px 16px 44px;
  margin-bottom: 24px;
  position: relative;
}

.jobrequirements-classname-alert-box::before {
  content: "ⓘ";
  position: absolute;
  left: 16px;
  top: 16px;
  color: #9f1239;
  font-size: 18px;
}

.jobrequirements-classname-alert-box ul {
  list-style: disc;
  margin-left: 20px;
  color: #4a5568;
  font-size: 14px;
}

.jobrequirements-classname-alert-box li {
  margin-bottom: 4px;
}

.jobrequirements-classname-form-card {
  background: white;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.jobrequirements-classname-form-group {
  margin-bottom: 24px;
}

.jobrequirements-classname-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.jobrequirements-classname-two-col {
  grid-template-columns: 1fr 1fr;
}

.jobrequirements-classname-three-col {
  grid-template-columns: 1fr 1fr 1fr;
}

.jobrequirements-classname-form-group label {
  display: block;
  color: #2d3748;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.jobrequirements-classname-form-group input[type="text"],
.jobrequirements-classname-form-group input[type="email"],
.jobrequirements-classname-form-group input[type="tel"],
.jobrequirements-classname-form-group input[type="date"],
.jobrequirements-classname-form-group input[type="number"],
.jobrequirements-classname-form-group select,
.jobrequirements-classname-form-group textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  color: #2d3748;
  background-color: #fbfaff;
  transition: border-color 0.2s;
}

.jobrequirements-classname-form-group input:focus,
.jobrequirements-classname-form-group select:focus,
.jobrequirements-classname-form-group textarea:focus {
  outline: none;
  border-color: #a73cdd;
  background-color: #fbfaff;
}

.jobrequirements-classname-form-group select {
  background-position: right 12px center;
  padding-right: 36px;
}

.jobrequirements-classname-additions-section {
  background-color: #f8f7fb;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.jobrequirements-classname-additions-title {
  color: #2d3748;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.jobrequirements-classname-checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.jobrequirements-classname-checkbox-label {
  color: #4a5568;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.jobrequirements-classname-checkbox-group input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #1434cc;
}

.jobrequirements-classname-info-icon {
  color: #a0aec0;
  font-size: 14px;
  cursor: help;
}

.jobrequirements-classname-add-more-btn {
  background: none;
  border: none;
  color: #1434cc;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.jobrequirements-classname-add-more-btn:hover {
  color: #1434cc;
}

.jobrequirements-classname-submit-btn {
  background: #1434cc;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: transform 0.2s, box-shadow 0.2s;
}

.jobrequirements-classname-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

@media (max-width: 768px) {
  .jobrequirements-classname-two-col,
  .jobrequirements-classname-three-col {
    grid-template-columns: 1fr;
  }

  .jobrequirements-classname-form-card {
    padding: 20px;
  }

  .jobrequirements-classname-title {
    font-size: 24px;
  }
}

/* signin up classname */

.signup-classname-container {
  margin-top: 70px;
  background-color: #f5f5f5;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.signup-classname-form-card {
  background: white;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 820px;
  width: 100%;
}

.signup-classname-divider-section {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.signup-classname-divider-line {
  flex: 1;
  height: 1px;
  background-color: #e2e8f0;
}

.signup-classname-divider-text {
  padding: 0 16px;
  color: #718096;
  font-size: 14px;
  font-weight: 500;
}

.signup-classname-title {
  color: #2d3748;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
}

.signup-classname-section-title {
  color: #2d3748;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 8px;
}

.signup-classname-section-subtitle {
  color: #718096;
  font-size: 14px;
  text-align: center;
  margin-bottom: 32px;
}

.signup-classname-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.signup-classname-form-group {
  margin-bottom: 24px;
}

.signup-classname-full-width {
  grid-column: 1 / -1;
}

.signup-classname-form-group label {
  display: block;
  color: #4a5568;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.signup-classname-form-group input[type="text"],
.signup-classname-form-group input[type="email"],
.signup-classname-form-group input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  color: #2d3748;
  background-color: #fbfaff;
  transition: border-color 0.2s, background-color 0.2s;
}

.signup-classname-form-group input:focus {
  outline: none;
  border-color: #1434cc;
  background-color: #fbfaff;
}

.signup-classname-form-group input::placeholder {
  color: #a0aec0;
}

.signup-classname-continue-btn {
  width: 100%;
  background: #1434CC;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 16px;
  margin-bottom: 16px;
  transition: background-color 0.2s;
}

.signup-classname-continue-btn:hover {
  background: #1434cc;
}

.signup-classname-footer-links {
  text-align: center;
  padding: 8px 0;
}

.signup-classname-footer-links a {
  color: #1434CC;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
  position: relative;
  padding: 4px 8px;
  transition: all 0.3s ease;
}

.signup-classname-footer-links a:hover {
  color: #2563eb;
  transform: translateY(-1px);
}

.signup-classname-footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.signup-classname-footer-links a:hover::after {
  transform: scaleX(1);
}

.signup-classname-login-link {
  font-weight: 600;
  color: #1434CC;
}

.signup-classname-confirmation-link {
  color: #6366f1;
  font-size: 13px;
}

.signup-classname-footer-links a:first-child {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .signup-classname-form-card {
    padding: 32px 24px;
  }

  .signup-classname-form-row {
    grid-template-columns: 1fr;
  }

  .signup-classname-title,
  .signup-classname-section-title {
    font-size: 20px;
  }
}

/* job bids view-------------- */

.jobbidsview-container {
  /* padding: 24px;
    border-radius: 8px;
    margin: auto; */
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  */

  background-color: #f5f5f7;
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.jobbidsview-form-section {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.jobbidsview-input-group {
  flex: 1;
}

.jobbidsview-label {
  display: block;
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 8px;
}

/* .jobbidsview-select,
.jobbidsview-input-text {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
} */
.jobbidsview-select,
.jobbidsview-input-text {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: #1f2937;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s;
}

.jobbidsview-select,
.jobbidsview-input-text:focus {
  outline: none;
  border-color: #1434cc;
  background-color: white;
}

.jobbidsview-section {
  margin-bottom: 20px;
  position: relative;
}

.jobbidsview-checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.jobbidsview-checkbox {
  width: 18px;
  height: 18px;
}

.jobbidsview-checkbox-label {
  font-size: 16px;
  color: #333;
}

.jobbidsview-info-icon {
  font-size: 14px;
  color: #999;
  cursor: pointer;
}

.jobbidsview-add-button {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  color: #555;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  top: -5px;
}

.jobbidsview-save-button {
  background: linear-gradient(135deg, #b240d9 0%, #e655c4 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.jobbidsview-list-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: #6a6a6a;
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.jobbidsview-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jobbidsview-list-item,
.jobbidsview-list-item-add {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #333;
}

.jobbidsview-add-line-item {
  cursor: pointer;
}

.jobbidsview-add-line-item:hover {
  color: #a73cdd;
}

.jobbidsview-list-price,
.jobbidsview-add-price {
  font-weight: bold;
}

.jobbidsview-total-section {
  background-color: white;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
  text-align: right;
}

.jobbidsview-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.jobbidsview-total-label {
  font-size: 18px;
}

.jobbidsview-total-price {
  font-size: 24px;
  font-weight: 700;
}

.jobbidsview-sales-tax {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
  display: block;
}

/* ------------------Notifications-------------- */

.notifications-main {
  padding: 30px 70px;
}
.notifications-container {
  background: #fbfaff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  color: #1f2937;
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.notifications-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.notifications-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notifications-bell-icon {
  font-size: 28px;
  color: #1a1a1a;
}

.notifications-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
}

.notifications-subtitle {
  color: #6c757d;
  font-size: 14px;
  margin-top: 5px;
}

.notifications-mark-read-btn {
  background: white;
  border: 1px solid #dee2e6;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #495057;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.notifications-mark-read-btn:hover {
  color: white;
  background: #1434cc;
}

.notifications-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #dee2e6;
}

.notifications-tab {
  padding: 12px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: #6c757d;
  position: relative;
  transition: all 0.2s;
  border-radius: 8px 8px 0 0;
}

.notifications-tab.notifications-active {
  color: white;
  background: #1434cc;
  font-weight: 500;
}

.notifications-badge {
  background: #1434cc;
  color: white;
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 12px;
  margin-left: 8px;
  font-weight: 600;
}

.notifications-section-title {
  font-size: 12px;
  font-weight: 600;
  color: #adb5bd;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.notifications-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.notifications-item {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.2s;
  background: white;
}

.notifications-item.notifications-unread {
  background: #faf1fc;
  border-left: 4px solid #a73cdd;
}

.notifications-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.notifications-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.notifications-icon.notifications-briefcase {
  background: #f3f0ff;
  color: #8b5cf6;
}

.notifications-icon.notifications-check {
  background: #ffe6f0;
  color: #e879b9;
}

.notifications-icon.notifications-dollar {
  background: #d4f4e7;
  color: #34d399;
}

.notifications-icon.notifications-info {
  background: #ffe6f0;
  color: #f472b6;
}

.notifications-icon.notifications-clock {
  background: #ffe6f0;
  color: #f472b6;
}

.notifications-content {
  flex: 1;
}

.notifications-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
}

.notifications-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.notifications-new-badge {
  background: #a73cdd;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.notifications-item-description {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.notifications-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notifications-timestamp {
  color: #adb5bd;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.notifications-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.notifications-action-btn {
  background: transparent;
  border: none;
  color: #495057;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}

.notifications-action-btn:hover {
  color: white;
  background: #a73cdd;
}

.notifications-delete-btn {
  color: #dc3545;
  font-size: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: all 0.2s;
}

.notifications-delete-btn:hover {
  background: rgb(250, 207, 207);
}

.notifications-check-icon {
  color: #28a745;
  font-size: 18px;
  cursor: pointer;
  padding: 2px 5px;
  border-radius: 6px;
  transition: all 0.2s;
}

.notifications-check-icon:hover {
  background: #d4f4e7;
}

.notifications-section {
  margin-bottom: 30px;
}

.notifications-hidden {
  display: none;
}
@media (max-width: 992px) {
  .notifications-main {
    padding: 20px 30px;
  }

  .notifications-title {
    font-size: 24px;
  }

  .notifications-tab {
    padding: 10px 16px;
    font-size: 14px;
  }

  .notifications-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .notifications-actions {
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .notifications-container {
    flex-direction: column;
    height: auto;
  }

  .notifications-main {
    padding: 15px;
  }

  .notifications-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .notifications-title {
    font-size: 20px;
  }

  .notifications-item {
    padding: 15px;
  }

  .notifications-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .notifications-tabs {
    flex-wrap: wrap;
  }

  .notifications-tab {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* honex home page ----------------------- */

.honex-homepage-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.honex-homepage-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.honex-homepage-logo-icon {
  width: 40px;
  height: 40px;
  background: #1434cc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.honex-homepage-logo-text {
  font-size: 24px;
  font-weight: 700;
  background: #1434cc;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.honex-homepage-nav-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.honex-homepage-register-btn {
  padding: 10px 24px;
  border: 2px solid #1434cc;
  background: white;
  color: #1434cc;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}

.honex-homepage-register-btn:hover {
  background: #1434cc;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(20, 52, 202,0.3);
}

.honex-homepage-login-dropdown {
  position: relative;
}

.honex-homepage-login-btn {
  padding: 10px 24px;
  background: #1434cc;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.honex-homepage-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(20, 52, 202, 0.4);
}

.honex-homepage-dropdown-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  min-width: 200px;
}

.honex-homepage-login-dropdown:hover .honex-homepage-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.honex-homepage-dropdown-item {
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.honex-homepage-dropdown-item:last-child {
  border-bottom: none;
}

.honex-homepage-dropdown-item:hover {
  background: #1434CC;
  color: white;
}

/* Hero Section */
.honex-homepage-hero {
  margin-top: 70px;
  min-height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-size: contain;
  background-position: center;
}

.honex-homepage-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(191, 126, 253, 0.4),
    rgba(254, 62, 158, 0.4)
  );
}

.honex-homepage-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 50px;
  max-width: 600px;
}

.honex-homepage-hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.honex-homepage-hero-description {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Features Section */
.honex-homepage-features {
  padding: 100px 50px;
  background: #f8f9fa;
}

.honex-homepage-section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: #1434cc;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.honex-homepage-section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Partners Section */
.honex-homepage-partners {
  min-height: 57vh;
  padding: 40px 50px;
  background: white;
}

.honex-homepage-partner-logo {
  max-width: 300px;
  margin: 0 auto;
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.honex-homepage-partner-logo img {
  max-width: 100%;
  height: auto;
}

/* Footer */
.honex-homepage-footer {
  color: black;
  padding: 30px 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.honex-homepage-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.honex-homepage-footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.honex-homepage-footer-link {
  color: black;
  text-decoration: none;
  transition: opacity 0.3s;
}

.honex-homepage-footer-link:hover {
  opacity: 0.8;
  color: #1434CC;
}

@media (max-width: 768px) {
  .honex-homepage-hero-title {
    font-size: 36px;
  }

  .honex-homepage-hero-description {
    font-size: 16px;
  }

  .honex-homepage-navbar {
    padding: 15px 20px;
  }

  .honex-homepage-features {
    padding: 60px 20px;
  }

  .honex-homepage-footer-content {
    flex-direction: column;
    text-align: center;
  }

  .honex-homepage-hero-content {
    padding: 30px 20px;
  }
}

/* settings css----------------------- */

.settings-container {
  background: #fbfaff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  color: #1f2937;
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.settings-header {
  margin-bottom: 20px;
}

.settings-header h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.settings-header p {
  color: #86868b;
  font-size: 16px;
}

.settings-tabs {
  display: flex;
  gap: 10px;
  background: white;
  padding: 5px;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow-x: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.settings-tab {
  flex: 1;
  padding: 10px 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  font-size: 15px;
  color: #86868b;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.settings-tab:hover {
  background: #f5f5f7;
  color: #1d1d1f;
}

.settings-tab.settings-active {
  /* background: #f5f5f7;
        color: #1d1d1f; */
  font-weight: 500;

  color: white;
  background: #1434cc;
}

.settings-content {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.settings-section {
  display: none;
}

.settings-section.settings-active {
  display: block;
}

.settings-section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.settings-section-subtitle {
  color: #86868b;
  font-size: 15px;
  margin-bottom: 30px;
}

.settings-form-group {
  margin-bottom: 24px;
}

.settings-form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1d1d1f;
}

.settings-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.settings-form-input:focus {
  outline: none;
  border-color: #8e44ad;
}

.settings-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.settings-form-row-three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.settings-subsection {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #d2d2d7;
}

.settings-subsection-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.settings-button {
  background: #1434cc;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.settings-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(20, 52, 202, 0.3);
}

.settings-button-danger {
  background: #dc3545;
}

.settings-button-danger:hover {
  background: #c82333;
}

.settings-notification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #f5f5f7;
}

.settings-notification-item:last-child {
  border-bottom: none;
}

.settings-notification-info h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.settings-notification-info p {
  font-size: 14px;
  color: #86868b;
}

.settings-toggle {
  position: relative;
  width: 50px;
  height: 28px;
}

.settings-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.settings-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d2d2d7;
  transition: 0.3s;
  border-radius: 28px;
}

.settings-toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.settings-toggle input:checked + .settings-toggle-slider {
  background-color: #1434cc;
}

.settings-toggle input:checked + .settings-toggle-slider:before {
  transform: translateX(22px);
}

.settings-dropdown {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  font-size: 15px;
  background: white;
  cursor: pointer;
  outline: none;
}

.settings-dropdown :focus {
  outline: none;
  border-color: #8e44ad;
}

.settings-helper-text {
  font-size: 13px;
  color: #86868b;
  margin-top: 6px;
}

.settings-danger-zone {
  margin-top: 40px;
  padding: 30px;
  border: 2px solid #dc3545;
  border-radius: 12px;
}

.settings-danger-zone h3 {
  color: #dc3545;
  font-size: 20px;
  margin-bottom: 8px;
}

.settings-danger-zone p {
  color: #86868b;
  margin-bottom: 20px;
}

.settings-danger-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.settings-danger-item-info h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.settings-danger-item-info p {
  font-size: 14px;
  color: #86868b;
}

@media (max-width: 768px) {
  .settings-content {
    padding: 18px;
  }

  .settings-header h1 {
    font-size: 24px;
  }

  .settings-tabs {
    padding: 5px;
  }

  .settings-tab {
    padding: 10px 16px;
    font-size: 14px;
  }

  .settings-form-row,
  .settings-form-row-three {
    grid-template-columns: 1fr;
  }

  .settings-notification-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .settings-danger-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .settings-header h1 {
    font-size: 20px;
  }

  .settings-section-title {
    font-size: 20px;
  }

  .settings-tab {
    font-size: 13px;
    padding: 8px 12px;
  }
}

/* my teams------ */

.myteams-container {
  background: #fbfaff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  color: #1f2937;
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.myteams-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.myteams-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a202c;
}

.myteams-btn-add {
  background: #1434cc;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(20, 52, 202, 0.3);
}

.myteams-btn-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 52, 202, 0.3);
}

.myteams-filters {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.myteams-filters-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.myteams-filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.myteams-filter-label {
  font-size: 14px;
  font-weight: 500;
  color: #1a202c;
}

.myteams-select {
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  color: #718096;
  background: white;
  cursor: pointer;
  padding-right: 40px;
}

.myteams-select:focus {
  outline: none;
  border-color: #1434cc;
}

.myteams-table-container {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.myteams-table {
  width: 100%;
  border-collapse: collapse;
}

.myteams-table thead {
  background: #f8f9fa;
  border-bottom: 1px solid #e2e8f0;
}

.myteams-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.myteams-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
}

.myteams-table tbody tr:hover {
  background: #f8f9fa;
}

.myteams-table tbody tr:last-child {
  border-bottom: none;
}

.myteams-table td {
  padding: 20px;
  font-size: 14px;
  color: #2d3748;
}

.myteams-status-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.myteams-status-active {
  background: #d1fae5;
  color: #065f46;
}

.myteams-status-inactive {
  background: #fee2e2;
  color: #991b1b;
}

.myteams-btn-edit {
  background: #1343cc;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.myteams-btn-edit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(20, 52, 202, 0.3);
}

/* Modal Styles */
.myteams-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.myteams-modal.myteams-active {
  display: flex;
}

.myteams-modal-content {
  background: white;
  border-radius: 12px;
  padding: 15px 40px;
  max-width: 800px;
  width: 90%;
  max-height: 95vh;
  overflow-y: auto;
}

.myteams-modal-header {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
}

.myteams-form-group {
  margin-bottom: 14px;
}

.myteams-form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1a202c;
  margin-bottom: 8px;
}

.myteams-form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  color: #2d3748;
  transition: border-color 0.3s ease;
}

.myteams-form-input:focus {
  outline: none;
  border-color: #1434cc;
}

.myteams-form-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  color: #718096;
  background: white;
  cursor: pointer;
  padding-right: 40px;
}

.myteams-form-select:focus {
  outline: none;
  border-color: #1434cc;
}

.myteams-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.myteams-btn-primary {
  background: #1434cc;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.myteams-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.myteams-btn-cancel {
  background: white;
  color: #2d3748;
  border: 1px solid #e2e8f0;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.myteams-btn-cancel:hover {
  background: #f8f9fa;
  border-color: #cbd5e0;
}

@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  .myteams-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .myteams-title {
    font-size: 24px;
  }

  .myteams-filters-row {
    grid-template-columns: 1fr;
  }

  .myteams-table-container {
    overflow-x: auto;
  }

  .myteams-table {
    min-width: 700px;
  }

  .myteams-modal-content {
    padding: 25px;
    width: 95%;
  }

  .myteams-modal-header {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .myteams-modal-actions {
    grid-template-columns: 1fr;
  }
}

.locations-action-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.locations-btn-edit,
.locations-btn-deactivate,
.locations-btn-prices {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.locations-btn-edit {
  background: #1434cc;
  color: white;
}

.locations-btn-edit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.locations-btn-deactivate {
  background-color: #dc2626;
  color: white;
}

.locations-btn-deactivate:hover {
  background-color: #b91c1c;
}

.locations-btn-prices {
  background: #1434cc;
  color: white;
}

.locations-btn-prices:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

/* job bids complete offer view page------------------ */

.jobbids-complete-container {
  margin: 0 auto;
  background-color: #f8f7fd;
  color: #1f2937;
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.jobbids-complete-main {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.jobbids-complete-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5px;
  border-bottom: 1px solid #e5e5e5;

  border-radius: 8px 8px 0 0;
}

.jobbids-complete-back-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: #333;
  cursor: pointer;
  padding: 5px;
}

.jobbids-complete-back-btn:hover {
  background: none;
  border: none;
  font-size: 22px;
  background: linear-gradient(135deg, #8915f6, #f30e81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  cursor: pointer;
  padding: 5px;
}

.jobbids-complete-header-actions {
  display: flex;
  gap: 15px;
}

.jobbids-complete-download-btn,
.jobbids-complete-send-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jobbids-complete-download-btn {
  background-color: #f0f0f0;
  color: #333;
}

.jobbids-complete-download-btn:hover {
  background: #1434cc;
  color: #ffffff;
}

.jobbids-complete-send-btn {
  background: #1434cc;
  color: #ffffff;
}
.jobbids-complete-send-btn:hover {
  background: linear-gradient(135deg, #b66afe, #fe6fb7);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.jobbids-complete-content {
  padding: 30px;
}

.jobbids-complete-top-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.jobbids-complete-label {
  font-size: 12px;
  color: #999;
  margin-bottom: 5px;
}

.jobbids-complete-value {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.jobbids-complete-bill-to {
  margin-bottom: 30px;
}

.jobbids-complete-bill-to h3 {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.jobbids-complete-company-name {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  margin-bottom: 5px;
}

.jobbids-complete-contact-name,
.jobbids-complete-email {
  font-size: 13px;
  color: #666;
  margin-bottom: 3px;
}

.jobbids-complete-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}

.jobbids-complete-table thead {
  background-color: #f8f7fb;
}

.jobbids-complete-table th {
  padding: 12px;
  text-align: left;
  font-size: 12px;
  color: #666;
  font-weight: 600;
  border-bottom: 1px solid #e5e5e5;
}

.jobbids-complete-table td {
  padding: 15px 12px;
  font-size: 13px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.jobbids-complete-section-title {
  font-size: 16px;
  background: #1434cc;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #1434cc;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 30px;
}

.jobbids-complete-service-info {
  margin-bottom: 20px;
}

.jobbids-complete-service-info p {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.jobbids-complete-terms {
  margin-top: 40px;
}

.jobbids-complete-terms h3 {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
}

.jobbids-complete-terms h4 {
  font-size: 13px;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 15px;
}

.jobbids-complete-terms p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.jobbids-complete-footer {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  margin-top: 40px;
}

.jobbids-complete-footer-item {
  flex: 1;
}

.jobbids-complete-footer-label {
  font-size: 12px;
  color: #999;
  margin-bottom: 5px;
}

.jobbids-complete-footer-value {
  font-size: 13px;
  color: #333;
}

.jobbids-complete-link {
  background: linear-gradient(135deg, #8915f6, #f30e81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

.jobbids-complete-totals {
  margin-top: 30px;
  border-top: 2px solid #e5e5e5;
  padding-top: 20px;
}

.jobbids-complete-total-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}

.jobbids-complete-total-label {
  font-size: 14px;
  color: #666;
  margin-right: 100px;
}

.jobbids-complete-total-value {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  min-width: 120px;
  text-align: right;
}

.jobbids-complete-alltotal-value {
  font-size: 18px;
  background: #1434cc;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  min-width: 120px;
  text-align: right;
}

.jobbids-complete-final-total {
  border-top: 1px solid #e5e5e5;
  padding-top: 15px;
  margin-top: 10px;
}

.jobbids-complete-final-total .jobbids-complete-total-label {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.jobbids-complete-final-total .jobbids-complete-total-value {
  font-size: 18px;
  color: #1434cc;
  font-weight: 700;
}

@media (max-width: 768px) {
  .jobbids-complete-header {
    padding: 15px 20px;
  }

  .jobbids-complete-content {
    padding: 20px;
  }

  .jobbids-complete-top-info {
    flex-direction: column;
    gap: 20px;
  }

  .jobbids-complete-table {
    font-size: 12px;
  }

  .jobbids-complete-table th,
  .jobbids-complete-table td {
    padding: 10px 8px;
  }

  .jobbids-complete-footer {
    flex-direction: column;
    gap: 15px;
  }

  .jobbids-complete-total-row {
    justify-content: space-between;
  }

  .jobbids-complete-total-label {
    margin-right: 20px;
  }

  .jobbids-complete-header-actions {
    flex-direction: column;
    gap: 10px;
  }

  .jobbids-complete-download-btn,
  .jobbids-complete-send-btn {
    font-size: 12px;
    padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .jobbids-complete-table {
    display: block;
    overflow-x: auto;
  }
}

/* supports page---------------------- */

.supports-container {
  margin: 0 auto;
  color: #1f2937;
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.supports-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.supports-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.supports-subtitle {
  font-size: 1.1rem;
  color: #6e6e73;
}

.supports-main-section {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.supports-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.supports-section-subtitle {
  font-size: 0.95rem;
  color: #6e6e73;
  margin-bottom: 20px;
}

.supports-dropdown {
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  margin-bottom: 30px;
  transition: border-color 0.3s;
  outline: none;
}

.supports-dropdown:hover {
  border-color: #1434cc;
}

.supports-contact-options {
  display: grid;
  gap: 15px;
}

.supports-contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid #e5e5e7;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.supports-contact-card:hover {
  background: #eff6ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.supports-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f7;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.supports-contact-card:hover .supports-icon-wrapper {
  background: #1434cc;
}

.supports-icon {
  font-size: 1.3rem;
  /* color: #f30e81; */
  background: #1434cc;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.supports-contact-card:hover .supports-icon {
  color: white;
  -webkit-text-fill-color: white;
}

.supports-contact-content {
  flex: 1;
}

.supports-contact-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.supports-badge {
  font-size: 0.75rem;
  padding: 3px 8px;
  background: #fff3cd;
  color: #856404;
  border-radius: 4px;
  font-weight: 500;
}

.supports-contact-desc {
  font-size: 0.9rem;
  color: #6e6e73;
}

.supports-articles-section {
  margin-bottom: 30px;
}

.supports-articles-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.supports-search-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.supports-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #6e6e73;
}

.supports-search-input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  font-size: 1rem;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  background: white;
  transition: all 0.3s;
}

.supports-search-input:focus {
  outline: none;
  border-color: #1434cc;
}

.supports-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.supports-article-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.supports-article-card:hover {
  border-color: #1434cc;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.supports-article-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.supports-article-icon {
  color: #1434cc;
  font-size: 1.2rem;
}

.supports-article-category {
  font-size: 0.85rem;
  color: #6e6e73;
  font-weight: 500;
}

.supports-article-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1d1d1f;
}

.supports-article-desc {
  font-size: 0.95rem;
  color: #6e6e73;
  line-height: 1.6;
  margin-bottom: 15px;
}

.supports-article-meta {
  font-size: 0.85rem;
  color: #86868b;
}

@media (max-width: 768px) {
  .supports-title {
    font-size: 2rem;
  }

  .supports-main-section {
    padding: 25px;
  }

  .supports-articles-grid {
    grid-template-columns: 1fr;
  }

  .supports-article-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 15px;
  }

  .supports-title {
    font-size: 1.75rem;
  }

  .supports-main-section {
    padding: 20px;
  }

  .supports-contact-card {
    padding: 15px;
  }
}

/* supports my tickets------------------------ */

.supports-mytickets-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.supports-mytickets-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.supports-mytickets-back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #6e6e73;
  font-size: 15px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.supports-mytickets-back-btn:hover {
  background: #1434cc;
  color: #ffffff;
  border-radius: 10px;
}

.supports-mytickets-title-section h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 5px;
}

.supports-mytickets-title-section p {
  font-size: 16px;
  color: #6e6e73;
}

.supports-mytickets-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.supports-mytickets-stat-card {
  background: white;
  padding: 15px 25px;
  border-radius: 16px;
  border: 1px solid #e5e5ea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.supports-mytickets-stat-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.supports-mytickets-stat-info {
  flex: 1;
}

.supports-mytickets-stat-label {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 8px;
}

.supports-mytickets-stat-number {
  font-size: 38px;
  font-weight: 700;
  color: #1d1d1f;
}

.supports-mytickets-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.supports-mytickets-icon-open {
  background: linear-gradient(135deg, #fef3c7, #fbbf24);
  color: #92400e;
}

.supports-mytickets-icon-progress {
  background: linear-gradient(135deg, #dbeafe, #3b82f6);
  color: #1e3a8a;
}

.supports-mytickets-icon-resolved {
  background: linear-gradient(135deg, #d1fae5, #10b981);
  color: #064e3b;
}

.supports-mytickets-icon-total {
  background: linear-gradient(135deg, #e9d5ff, #1434cc);
  color: #581c87;
}

.supports-mytickets-table-container {
  background: white;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e5e5ea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.supports-mytickets-table-header {
  margin-bottom: 15px;
}

.supports-mytickets-table-header h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.supports-mytickets-table-header p {
  font-size: 14px;
  color: #6e6e73;
}

.supports-mytickets-table {
  width: 100%;
  border-collapse: collapse;
}

.supports-mytickets-table thead {
  border-bottom: 2px solid #f5f5f7;
}

.supports-mytickets-table th {
  text-align: left;
  padding: 12px 8px;
  font-size: 13px;
  font-weight: 600;
  color: #6e6e73;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.supports-mytickets-table td {
  padding: 18px 12px;
  border-bottom: 1px solid #f5f5f7;
  font-size: 13px;
}

.supports-mytickets-table tbody tr:hover {
  background: linear-gradient(135deg, #f5c1e4 0%, #f4bae0 100%);
}

.supports-mytickets-priority-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.supports-mytickets-priority-high {
  background-color: #fee;
  color: #dc2626;
}

.supports-mytickets-priority-medium {
  background-color: #fef3c7;
  color: #92400e;
}

.supports-mytickets-priority-low {
  background-color: #f3f4f6;
  color: #4b5563;
}

.supports-mytickets-priority-urgent {
  background-color: #fecaca;
  color: #991b1b;
}

.supports-mytickets-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.supports-mytickets-status-open {
  background-color: #f3e8ff;
  color: #7c3aed;
}

.supports-mytickets-status-progress {
  background-color: #e0f2fe;
  color: #0369a1;
}

.supports-mytickets-status-resolved {
  background-color: #dcfce7;
  color: #15803d;
}

.supports-mytickets-status-closed {
  background-color: #f3f4f6;
  color: #4b5563;
}

.supports-mytickets-status-icon {
  font-size: 12px;
}

.supports-mytickets-date {
  color: #6e6e73;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .supports-mytickets-table-container {
    overflow-x: auto;
  }

  .supports-mytickets-table {
    min-width: 900px;
  }
}

@media (max-width: 768px) {
  .supports-mytickets-header {
    flex-direction: column;
  }

  .supports-mytickets-header-left {
    width: 100%;
  }

  .supports-mytickets-new-btn {
    width: 100%;
    justify-content: center;
  }

  .supports-mytickets-title-section h1 {
    font-size: 28px;
  }

  .supports-mytickets-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .supports-mytickets-table-container {
    padding: 20px;
  }

  .supports-mytickets-stat-number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .supports-mytickets-stats-grid {
    grid-template-columns: 1fr;
  }

  .supports-mytickets-title-section h1 {
    font-size: 24px;
  }

  .supports-mytickets-table-container {
    padding: 16px;
  }
}
.supports-newticket-form-container {
  margin-top: 15px;
  background: white;
  border-radius: 12px;
  padding: 15px 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.supports-newticket-header {
  margin-bottom: 22px;
}

.supports-newticket-title {
  font-size: 23px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.supports-newticket-subtitle {
  font-size: 14px;
  color: #6e6e73;
}

.supports-newticket-form-label-required {
  color: #dc2626;
  margin-left: 2px;
}
.supports-newticket-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.supports-newticket-char-count {
  font-size: 13px;
  color: #86868b;
  margin-top: 8px;
}

.supports-newticket-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.supports-newticket-btn {
  padding: 12px 32px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
  color: #1d1d1f;
  border: 1px solid #d1d1d6;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.supports-newticket-btn:hover {
  background-color: #fafafa;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .supports-newticket-form-container {
    padding: 32px 24px;
  }

  .supports-newticket-title {
    font-size: 24px;
  }

  .supports-newticket-form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .supports-newticket-form-actions {
    flex-direction: column-reverse;
  }

  .supports-newticket-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    padding: 12px;
  }

  .supports-newticket-form-container {
    padding: 24px 20px;
  }

  .supports-newticket-title {
    font-size: 22px;
  }
}

/* honex new sign up log in welcome page----------------- */

.honex-signup-form-card {
  background: white;
  border-radius: 12px;
  padding: 0px 38px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 520px;
  width: 100%;
}

.honex-signup-password-requirement {
  font-size: 13px;
  color: #718096;
  margin-top: 6px;
}
.honex-signup-password-label-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.honex-signup-password-label-container a {
  color: #3b82f6;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 2px;
  position: relative;
  padding: 4px 8px;
  transition: all 0.3s ease;
}

.honex-signup-password-label-container a:hover {
  color: #2563eb;
  transform: translateY(-1px);
}

.honex-signup-password-label-container a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.honex-signup-password-label-container a:hover::after {
  transform: scaleX(1);
}

.honex-signup-container {
  margin: 90px auto 50px auto;
  align-items: center;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.08);
  max-width: 560px;
  width: 100%;
  background-color: white;
  border-radius: 12px;
  max-width: 520px;
  width: 100%;
}

.honex-signup-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.honex-signup-icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(147, 51, 234, 0.2);
}

.honex-signup-icon {
  font-size: 36px;
  color: #1434cc;
}

.honex-signup-header {
  text-align: center;
  margin-bottom: 32px;
}

.honex-signup-title {
  font-size: 36px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 12px;
}

.honex-signup-subtitle {
  font-size: 15px;
  color: #718096;
}

.honex-signup-next-steps {
  background: #f8f7fb;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 28px;
}

.honex-signup-steps-title {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 20px;
}

.honex-signup-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.honex-signup-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.honex-signup-step-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: white;
  border: 2px solid #1434cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.honex-signup-step-icon i {
  font-size: 10px;
  color: #1434cc;
}

.honex-signup-step-text {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
}

.honex-signup-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.honex-signup-button {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.honex-signup-button-primary {
  color: white;
  background: #1434cc;
}

.honex-signup-button-primary:hover {
  background: #7e22ce;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.honex-signup-button-secondary {
  color: #4a5568;
  background: white;
  border: 1px solid #e2e8f0;
}

.honex-signup-button-secondary:hover {
  color: white;
  background: #1434cc;
}

.collapse {
  display: block;
  height: 0;
  overflow: hidden;
  transition: height 0.75s ease;
  will-change: height;
}
.collapse.show {
  height: auto;
}
.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.75s ease;
  will-change: height;
}
.collapsed.iconrotate i {
  transform: rotate(180deg);
}
.jobbids-complete-terms ul {
  list-style-type: disc;
}
.jobbids-complete-termsol {
  list-style-type: decimal;
}
.jobbids-complete-terms li[data-list="bullet"] {
  list-style-type: disc;
}
.jobbids-complete-terms li[data-list="ordered"] {
  list-style-type: decimal;
}
.jobbids-complete-terms ol li {
  list-style-position: outside;
  font-size: 13px;
}

.jobbids-complete-terms p.ql-indent-1 { padding-left: 3em; }
.jobbids-complete-terms p.ql-indent-2 { padding-left: 6em; }
.jobbids-complete-terms p.ql-indent-3 { padding-left: 9em; }
.jobbids-complete-terms p.ql-indent-4 { padding-left: 12em; }

.jobbids-complete-terms h3.ql-indent-1 { padding-left: 3em; }
.jobbids-complete-terms h3.ql-indent-2 { padding-left: 6em; }
.jobbids-complete-terms h3.ql-indent-3 { padding-left: 9; }
.jobbids-complete-terms h3.ql-indent-4 { padding-left: 12em; }

.jobbids-complete-terms h4.ql-indent-1 { padding-left: 3em; }
.jobbids-complete-terms h4.ql-indent-2 { padding-left: 6em; }
.jobbids-complete-terms h4.ql-indent-3 { padding-left: 9; }
.jobbids-complete-terms h4.ql-indent-4 { padding-left: 12em; }

.jobbids-complete-terms h5.ql-indent-1 { padding-left: 3em; }
.jobbids-complete-terms h5.ql-indent-2 { padding-left: 6em; }
.jobbids-complete-terms h5.ql-indent-3 { padding-left: 9em; }
.jobbids-complete-terms h5.ql-indent-4 { padding-left: 12em; }

.jobbids-complete-terms li.ql-indent-1 {
  margin-left: 3em;
}
.jobbids-complete-terms li.ql-indent-2 {
  margin-left: 6em;
}
.jobbids-complete-terms li.ql-indent-3 {
  margin-left: 9em;
}
.jobbids-complete-terms li.ql-indent-4 {
  margin-left: 12em;
}
.jobbids-complete-terms table {
  margin-left: 3em;
  width: 95%;
  table-layout: fixed;
  border-collapse: collapse;
}
.jobbids-complete-terms td, .jobbids-complete-terms th {
  width: auto;
  word-break: break-word;
  border: 1px solid #ccc;
}
