.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}
.profile-sidebar {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-menu li {
  border-bottom: 1px solid #f1f1f1;
}
.sidebar-menu li:last-child {
  border-bottom: none;
}
.sidebar-menu a {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 10px;
}
.sidebar-menu a:hover,
.sidebar-menu a.active {
  background-color: #70a558;
  color: white;
}
.sidebar-menu i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}
.profile-content {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.profile-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
.profile-actions {
  display: flex;
  gap: 10px;
}
.profile-image-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}
.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f1f1f1;
}
.camera-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  color: black;
}
.form-label {
  font-weight: 400;
  margin-bottom: 5px;
  color: #374151;
}
.pending-badge {
  background-color: #fff3cd;
  color: #856404;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
}
.delete-btn {
  color: #dc3545;
  border-color: #dc3545;
}
.delete-btn:hover {
  background-color: #dc3545;
  color: white;
}

.btn-outline-white {
  color: #333;
  border: 1px solid #a5a5a5;
  border-radius: 5px;
}

.btn-outline-white:focus {
  box-shadow: none !important;
}

.btn-outline-white:hover {
  color: white;
  background-color: #70a558;
}

.btn-outline-secondary:hover {
  background-color: #fff;
  color: black;
}

.btn-outline-secondary {
  background-color: #a5a5a5;
  color: white;
  border: 1px solid #a5a5a5;
}
