.editCard {
  /* border-radius: 12px; */
  /* box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1); */
  /* margin: 20px auto; */
  /* max-width: 700px; */
  /* padding: 20px; */
}

.heading {
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.input {
  height: 45px;
  border-radius: 8px;
}

.textarea {
  border-radius: 8px;
  resize: none;
}

.buttonRow {
  padding: 8px 25px;
  font-weight: 500;
  border-radius: 50px;
  background-color: #385dff;
}

.cancelBtn {
  background-color: #6c757d;
  border: none;
}

.saveBtn {
  background-color: #007bff;
  border: none;
}

.sidebar {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.item a {
  text-decoration: none;
  color: #333;
}

.activeItem {
  background-color: #003b73 !important;
  color: #fff !important;
}

.activeItem a {
  color: #fff !important;
  text-decoration: none;
}

.card {
  padding: 20px;
  border-radius: 12px;
}

.headerRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: 2em;
}

.title {
  font-weight: bold;
  margin-bottom: 0;
}

.viewBtn {
  background: #f3f5f9;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sectionTitle {
  margin-top: 25px;
  font-weight: 600;
  color: #333;
}

.saveBtn {
  background-color: #003b73;
  border-color: #003b73;
}

/* Info Box */
.infoBox {
  background: #f8fbff;
  border-left: 4px solid #0d6efd;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.infoIcon {
  font-size: 20px;
  margin-right: 10px;
}

/* Tabs */
.tabMenu {
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Footer Notes */
.smallNote {
  background: #fef8ec;
  margin-top: 20px;
  color: #f7ba45;
  border: 1px solid #f7ba4514;
  padding: 10px;
  font-size: 13.6px;
}

.info {
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s ease;
  color: "#ffff";
  background-color: #00447c;
  padding: 10px 8px;
  margin-left: 0;
}

.uploadBox {
  border: 1px dashed #d1d5db;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  background-color: #ffffff;
  width: 100%;
  margin: 0 auto;
  transition: border-color 0.3s ease;
}

.uploadBox:hover {
  border-color: #3b82f6; /* Blue on hover */
}

.dropText {
  font-size: 16px;
  color: #374151; /* Gray text */
  margin-bottom: 20px;
}

.fileInput {
  display: none; /* Hide default input */
}

.selectBtn {
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.selectBtn:disabled {
  background-color: #93c5fd;
  cursor: not-allowed;
}

.actionButton {
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 50px;
  background-color: #1e42dd;
}

.cropWrapper {
  margin-top: 20px;
  text-align: center;
}

.cropContainer {
  position: relative;
  width: 100%;
  height: 350px;
  background: #333;
}

.controls {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.buttonColumn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* spacing between buttons */
  margin-top: 10px; /* optional spacing above buttons */
}

.previewImage {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}
