.text-theme {
    color: #fd1616;
}

.profile-submenu {
  list-style: none;
  padding-left: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.profile-submenu li {
  margin-bottom: 5px;
}

.profile-submenu-link {
  font-size: 14px;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  color: #666;
}

.profile-submenu-link.active {
  color: #007bff;
}

.profile-submenu-link i {
  margin-right: 8px;
}

.profile-chevron {
  float: right;
}

.profile-thumb {
  position: relative;
}

.profile-thumb img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.profile-edit-btn {
  position: absolute;
  bottom: 60px;
  right: 10px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dc3545;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  color: white;
}

.profile-edit-btn:hover {
  background-color: #c82333;
  color: white;
  transform: scale(1.1);
  transition: all 0.2s ease;
}

.banner-container {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.banner-image {
  max-height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.banner-edit-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dc3545;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  color: white;
}

.banner-edit-btn:hover {
  background-color: #c82333;
  color: white;
  transform: scale(1.1);
  transition: all 0.2s ease;
}

.banner-update-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
}