  /* Core Resets (Limited since Bootstrap handles most) */
  * {
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  /* Application background override */
  body {
      background: #ffffff;
      min-height: 100vh;
  }

  /* Wizard Steps Custom Styling */

  .wizard-progress {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;
      position: relative;
  }

  .wizard-progress::before {
      content: '';
      position: absolute;
      top: 15px;
      left: 0;
      right: 0;
      height: 4px;
      background: #ecf0f1;
      z-index: 1;
  }

  .progress-bar {
      position: absolute;
      top: 15px;
      left: 0;
      height: 4px;
      background: #3498db;
      z-index: 2;
      transition: width 0.3s ease;
  }

  .progress-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 3;
  }

  .step-bubble {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: #ecf0f1;
      color: #7f8c8d;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      margin-bottom: 8px;
      border: 3px solid #ecf0f1;
      transition: all 0.3s;
  }

  .progress-step.active .step-bubble {
      background: #3498db;
      color: white;
      border-color: #3498db;
  }

  .progress-step.completed .step-bubble {
      background: #2ecc71;
      color: white;
      border-color: #2ecc71;
  }

  .step-label {
      font-size: 14px;
      color: #7f8c8d;
      text-align: center;
  }

  .progress-step.active .step-label {
      color: #3498db;
      font-weight: 600;
  }

  .wizard-form {
      position: relative;
      min-height: 400px;
  }

  .form-step {
      display: none;
      animation: fadeIn 0.5s;
  }

  .form-step.active {
      display: block;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  /* Job Post Custom Colors (Used in Dashboard/Wizard) */
  .job-requirements {
      background: #f8f9fa;
      border-left: 5px solid #3498db;
  }

  /* Form & Component Logic overrides for JS transitions */

  .radio-group {
      display: flex;
      gap: 20px;
      margin-top: 5px;
  }

  .radio-option {
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .radio-option input {
      width: auto;
  }

  .experience-container {
      display: flex;
      gap: 15px;
  }

  .experience-value {
      flex: 2;
  }

  .experience-unit {
      flex: 1;
  }

  /* JS Errors & Messages */
  .error {
      color: #e74c3c;
      font-size: 14px;
      margin-top: 5px;
      display: none;
  }

  #selectedPositionText {
      color: #000;
  }

  .success-message,
  .error-message {
      display: none;
      padding: 15px;
      margin: 20px 0;
      border-radius: 8px;
      font-family: Arial, sans-serif;
      font-size: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .success-message {
      background-color: #e6ffed;
      color: #2b7a2b;
      border: 1px solid #98e69e;
  }

  .error-message {
      background-color: rgb(105, 12, 12);
      color: white;
      border: 1px solid #f5a9a9;
  }


  .required::after {
      content: " *";
      color: #e74c3c;
  }

  /* Loader Overlay */
  #loaderOverlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.85);
      display: none;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      z-index: 9999;
  }

  .spinner {
      border: 6px solid #f3f3f3;
      border-top: 6px solid #3498db;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      animation: spin 1s linear infinite;
      margin-bottom: 20px;
  }

  .loading-text {
      color: #2c3e50;
      font-weight: 600;
      font-size: 16px;
      text-align: center;
  }

  @keyframes spin {
      0% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(360deg);
      }
  }

  /* Custom Dropdown Wrapping for Mobile */
  .custom-dropdown-container .dropdown-item {
      white-space: normal !important;
      word-wrap: break-word;
      padding-top: 12px;
      padding-bottom: 12px;
  }

  .custom-dropdown-container .dropdown-toggle {
      transition: border-color 0.2s;
      white-space: normal !important;
      word-wrap: break-word;
  }

  .custom-dropdown-container .dropdown-item.selected {
      background-color: #f8f9fa;
      font-weight: 600;
      color: #000 !important;
  }

  .footer-text {
      color: #000000 !important;
      font-weight: 700;
  }