/* ======================================
  Filename: job.css
  Author: Elavarasan 
  Description: Common css for job related module
 
  =======================================
*/


    h2 {
      text-align: center;
      color: #0d3b66;
    }
    label.bold {
      font-weight: bold;
      color: #0d3b66;
      margin-top: 20px;
    }
    select, input[type="file"], input[type="text"], input[type="number"], button, textarea {
      width: 100%;
      padding: 12px;
      margin-top: 8px;
      border-radius: 8px;
      border: 1px solid #ccc;
      box-sizing: border-box;
    }
    button {
      /* background: #0d3b66; */
      color: white;
      font-weight: bold;
      border: none;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    button:hover {
      /* background: #09426a; */
    }
    .option-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
      margin-bottom: 30px;
    }
    .option-group input[type="radio"] {
      display: none;
    }
	 .option-group input[type="checkbox"] {
      display: none;
    }
    .option-group label {
      padding: 10px 20px;
      border: 2px solid #0d3b66;
      border-radius: 20px;
      cursor: pointer;
      background: #ffffff;
      transition: all 0.3s ease;
      font-weight: 500;
    }
    .option-group input[type="radio"]:checked + label {
      background-color: #0d3b66;
      color: white;
    }
	 .option-group input[type="checkbox"]:checked + label {
      background-color: #0d3b66;
      color: white;
    }
    .preview-container {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }
    .preview-item {
      position: relative;
    }
    .preview-item img {
      max-width: 120px;
      border-radius: 8px;
      border: 1px solid #ccc;
      background: #fff;
      padding: 4px;
    }
    .close-btn {
      position: absolute;
      top: -8px;
      right: -8px;
      background: red;
      color: white;
      font-size: 14px;
      border-radius: 50%;
      padding: 2px 6px;
      cursor: pointer;
    }
    .submit-wrapper {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }
	
	.drop-zone {
	  border: 2px dashed #0d3b66;
	  border-radius: 10px;
	  padding: 40px;
	  text-align: center;
	  color: #0d3b66;
	  cursor: pointer;
	  background-color: #e0f7fa7a;
	  transition: background-color 0.5s;
	  margin-bottom: 20px;
	}
	.drop-zone.dragover {
	  background-color: #e0f7fa;
    border-color: #00acc1;
	}


	.preview-container {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 10px;
	}

  /* .preview-item {
    position: relative;
    border: 1px solid #6a5e5e;
    padding: 10px;
    min-height: 244px;
    min-width: 187px;
    width: 163px;
    border-radius: 10px;
    float: left;
    margin: 6px;
  }
 */

 .preview-item {
    position: relative;
    border: 1px solid #6a5e5e;
    padding: 10px;
    min-height: 263px;
    min-width: 187px;
    width: 163px;
    border-radius: 10px;
    float: left;
    margin: 6px;
    margin-bottom: 22px;
}
.preview-item img {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #fff;
    padding: 4px !important;
    height: 170px;
    width: 189px !important;
}

	.preview-item p {
	  margin: 0;
	  font-size: 14px;
	}

	.close-btn {
	  position: absolute;
	  top: -8px;
	  right: -8px;
	  background: red;
	  color: white;
	  font-size: 14px;
	  border-radius: 50%;
	  padding: 2px 6px;
	  cursor: pointer;
	}

  .preview-item p {
  margin: 6px 0 0 0;
  font-size: 13px;
  color: #333;
  word-break: break-all;
}

.alert-dismissible {
    padding-right: 3rem;
    width: 65%;
    float: right;
    margin-right: 62px;
}
.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0.50rem 1rem;
}

  .category-block {
    border: 1px solid #33d4cf;;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 12px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  } 
  
  #categories-container {
    border: 1px solid #33d4cf;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 12px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }


  .category-block input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 12px;
  }

  .dropZone {
    border: 2px dashed #bbb;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    margin-bottom: 12px;
  }

  .dropZone.dragover {
    background-color: #e0f7fa;
    border-color: #00acc1;
  }

  .filePreview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }



  #add-category-btn {
    background: #29afab;
    color: white;
    border: none;
    /*padding: 10px 18px;*/
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    /*margin-bottom: 20px;*/
    /*width:20%;*/
    float:right;
  }

  #add-category-btn:hover {
    background: #008c9e;
  }

.category-main-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 14px;
    color: #fff;
    background-color: #7043a4;
    padding: 6px;
}

.category-close-btn {
    float: right;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #ef4444;
    cursor: pointer;
    margin-top: 0px;
    margin-right: 0px;
    width: 4%;
    padding: 0px;
    background: #e6e9ed ;
    font-weight: bold;
}
.category-close-btn:hover {
  color: #dc2626;
}

.category-title{    
    width: 95%;
    background: #e6e9ed 1px;
    padding: 5px;
    color: #434a54;
    border-radius: 8px;
}
.preview-item img.file-icon{
padding: 40px !important;
width:170px;

}

.readonly-select {
  background-color: #e9ecef;  /* Light gray */
  pointer-events: none;
  border: 1px solid #ccc;
  color: #555;
}



.remove-border{border:none!important;}

.ck.ck-editor__editable.ck-focused {
    border-color: #33d4cf !important; /* Your desired border color */
    box-shadow: 0 0 4px #33d4cf !important;
    outline: none !important;         /* Removes browser default outline */
}

.wizard > .actions {
    text-align: right !important;
    width: 100%;
}

.wizard > .actions ul {
    float: right !important;
}

.wizard > .actions li {
    float: none !important;
    display: inline-block;
}

