.gigr-resp {
    padding: 10px;
    color: #000;
    font-size:13px;
}

.gigr-error {
    background-color: #f2d7d5;
}

.gigr-success {
    background-color: #abebc6;
}

.gigr-info {
    background-color: #f6ddcc;
    font-weight: normal !important;
    font-size:14px !important;
}

.gigr-butt {
    border-radius: 4px;
    display: inline-block;
    font-family: var(--title-font-family);
    font-weight: 700;
    font-size: 15px;
    font-style: normal;
    letter-spacing: 0em;
    padding: 13px 35px;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 0;
  }

.social-share li {
    padding: 5px
}

.social-share li .fab {
    font-size: 2rem
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

.chat-button {
      position: fixed;
      bottom: 120px;
      right: 20px;
      background-color: #25D366; /* WhatsApp green */
      color: white;
      padding: 14px 20px;
      border: none;
      border-radius: 30px;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      z-index: 9999;
      transition: all 0.3s ease;
    }

.chat-button:hover {
    background-color: #1DA851;
}

.upload-box {
    background-color: #fff;
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 40px;
    text-align: left;
    margin: auto;
    transition: border-color 0.3s;
  }

  .upload-box:hover {
    border-color: #2a8634;
  }

  .upload-box input[type="file"] {
    display: none;
  }

  .upload-label {
    display: inline-block;
    padding: 12px 24px;
    background-color: #090b11;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .upload-label:hover {
    background-color: #088547;
  }

  .file-name {
    margin-top: 20px;
    font-style: italic;
    color: #333;
  }

  #gig-trix-edit {
    min-height: 350px;  /* Adjust height */
    max-height: 500px;  /* Optional max */
    width: 100%;        /* Full width */
    resize: vertical;   /* Optional: allow user to resize */
    overflow-y: auto;   /* Scroll if content overflows */
    padding: 10px;      /* Optional: spacing inside editor */
    border: 1px solid #ccc;  /* Optional: custom border */
    border-radius: 6px; /* Optional: rounded edges */
  }

  body.modal-open {
      overflow: hidden;
    }

    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100vw;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .modal-box {
      background: white;
      padding: 2rem;
      border-radius: 10px;
      width: 90%;
      max-width: 600px;
      text-align: center;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
      animation: fadeIn 0.3s ease-in-out;
    }

    .modal-box h2 {
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
    }

    .user-options {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .user-card {
      flex: 1;
      min-width: 0;
      background-color: #f2f4f8;
      padding: 1.5rem;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s;
      border: 2px solid transparent;
    }

    .user-card:hover {
      background-color: #e2eaf6;
      transform: scale(1.03);
    }

    .user-card.selected {
      border-color: #2a8cff;
      background-color: #d6e9ff;
    }

    .user-card h3 {
      margin: 0;
      font-size: 1.2rem;
    }

    .university-select {
      margin-top: 1rem;
      text-align: left;
    }

    .university-select label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: bold;
    }

    .university-select select {
      width: 100%;
      padding: 0.5rem;
      border-radius: 5px;
      border: 1px solid #ccc;
      font-size: 1rem;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }

    @media (max-width: 600px) {
      .user-options {
        flex-direction: column;
      }

      .user-card {
        width: 100%;
      }

      .university-select {
        text-align: center;
      }
    }

    .job-list {
      margin: 0 auto;
    }

    .job-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      padding: 1rem 1.5rem;
      margin-bottom: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      gap: 1rem;
    }

    .job-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .job-title {
      font-size: 1.2rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 0.5rem;
    }

    .job-info {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.9rem;
      color: #666;
    }

    .info-item {
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .job-icon {
      width: 64px;
      min-width: 64px;
      background-color: #dfe8ff;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
    }

    @media (max-width: 600px) {
      .job-card {
        flex-direction: column;
        align-items: flex-start;
      }

      .job-icon {
        width: 100%;
        height: 64px;
        margin-top: 1rem;
      }
    }