.update-profile {
  background-color: #4772f3;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.update-profile:hover {
  background-color: #237f7c;
}

/* Radio Button Style */
.custom-radio {
  margin-right: 8px;
}

/* Label Style */
.custom-label {
  color: #495057;
  font-weight: 300;
}

.custom-upload-btn {
  background-color: #4772f3;
  color: white;
  font-size: 13px;
  border: none;
  padding: 10px 10px;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hover Effect */
.custom-upload-btn:hover {
  background-color: #05212e;
  /* Darker shade of Bootstrap Primary Color */
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  color: white;
}

/* Focus Effect */
.custom-upload-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.custom-post-task-btn {
  background-color: white;
  color: #4772f3;
  padding: 2px 5px;
  border-color: #4772f3;
  border-radius: 8px;
  font-weight: 500;
  font-size: 12px;
  transition: all 0.3s;
}

/* Hover Effect */
.custom-post-task-btn:hover {
  background-color: #4772f3;
  color: aliceblue;
}

/* Focus Effect */
.custom-post-task-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.icon-style {
  cursor: pointer;
  padding: 4px;
  /* Reduced padding */
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 14px;
  /* Decreased icon size */
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

/* Hover Effects */
.edit-icon:hover {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

.delete-icon:hover {
  background-color: #dc3545;
  color: white;
  border-color: #dc3545;
}

.pdf-upload-btn {
  background-color: white !important;
  color: #4772f3 !important;
  border: 1px solid #4772f3;
  border-radius: 0px 10px 10px 0px;
  padding: 3px 12px 9px 7px;
  font-size: 15px;
}

.pdf-upload-btn:hover {
  background-color: #4772f3 !important;
  color: white !important;
}


.custom-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 6fr 2fr 2fr 6fr;

  width: 100%;
  margin: 30px auto;
  padding: 10px;
}


.grid-box {
  display: inline-block;
  padding: 15px;
  border: 1px solid #cccccc36;
  text-align: center;
  background-color: #fff;
  font-size: 15px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  border-radius: 1px;
  gap: 0;
  width: auto;
  height: auto;
  max-width: 100%;
}

.input-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-section input {
  padding: 6px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.input-section button {
  padding: 5px 8px;
  font-size: 13px;
  width: fit-content;
  background-color: #007bff;
  color: white;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.input-section button:hover {
  background-color: #0056b3;
}

.input-section .icon {
  font-size: 14px;
}

.input-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 550px;
}

.input-section input {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-section button {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.flex-buttons {
  display: flex;
  gap: 10px;
  /* spacing between buttons */
}

@media (max-width: 1024px) {
  .custom-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .custom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.year {
  height: 20px;
}

.input-group {
  position: relative;
}




.list-group {
  max-height: 200px;
  overflow-y: auto;
  z-index: 9999;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
}