.container {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  width:100%;
}
.bussines-grid-style{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:20px;
}
.bussines-grid-style ul{
    list-style: none;
    padding: 0px;
}
.grid-card{
  padding: 1.5rem;
  border-radius: 12px;
  border:1px solid #EBEBEB;
}
.grid-card h4{
    font-size: 1.15em;
    font-weight: 600;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 15px;
}
.card_heading {
    padding-bottom: 10px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile-menu{
    width:30%;
}
.profile-details{
    width:70%;
}
.profile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem !important;
}

.profile_container .avatar {
    width: 60px;
    height: 60px !important;
    border-radius: 50% !important;
    object-fit: cover;
    background: #aaaaaa;
    font-size: 0px;
    border: 3px solid #001d4f;
}

.profile_container  .user-info .name {
  font-weight: 600;
  font-size: 1.1rem;
}
.profile_container  .user-info p{
    margin-bottom:0px;
}

.profile_container  .user-info .email {
  font-size: 0.9rem;
  color: #555;
}

.profile_container  .profile_menu{
  list-style: none;
  margin-top: 1rem;
  padding:0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile_container .profile_menu li {
    cursor: pointer;
    border-radius: 10px;
    color: #001d4f;
}
.profile_container .profile_menu li a{
    border-radius: 10px;
    border-top: 1px solid #eee;
    background: #eee;
    color: #001d4f;
    padding: 16px 20px;
    font-weight: 600;
    display: block;
    transition: .2s;
}

.profile_container .profile_menu li a:hover, .profile_container .profile_menu li a.active{
  background: #001d4f;
  color:#FFF;
}

a.logout-account-btn{ 
  background-color: #8e681f !important;
  color:#FFF !important; 
  border-radius: 10px;
}

.profile_container  .profile_menu li span {
  margin-right: 10px;
}

.profile_container  .dropdown {
  position: absolute;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 6px;
  top: 140px;
  right: 20px;
  display: flex;
  flex-direction: column;
}

.profile_container .dropdown button {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.profile_container .settings-panel select {
  border: none;
  background: #f0f0f0;
  padding: 6px;
  border-radius: 5px;
}

.profile_container  .settings-panel .settings-row {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.profile_container  .profile-details .form-group {
  margin-bottom: 1rem;
}

.profile_container  .profile-details .form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.3rem;
}

.profile_container  .profile-details .form-group p {
  color: #333;
}

.profile_container .save-btn {
  width: 100%;
  background-color: #2573ff;
  border: none;
  padding: 10px;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

#custom-password-change-form label{
	margin-bottom:10px;
}
#custom-password-change-form p{
	margin-bottom:10px;
}
