
.fed-root-header {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin-top: 0px;
  flex-direction: column;
  height: 50%;
  justify-content: center;
}

.fed-logo-container {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
}

.fed-logo-mobileview-container {
  display: none;
}

.fed-logo {
  height: 100%;
  object-fit: contain; /* Added */
  border-radius: 6px;
}

.fed-details-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  height: auto;
  justify-content: start;
  margin-top: 4px;
  margin-bottom: 4px;
  width: 100%;
  gap: 4px;
}

.fed-title-desc-holder {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
  width: 100%;
}


#fedTitle {
  margin-bottom: 4px;
  font-size: 1.125rem;
  color: #ffff00de;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
  display: -webkit-box;
  font-weight: bold;
  max-height: calc(3 * 1.2em); /* Assuming line height is 1.2em, adjust as needed */
}

#fedDescription {
  font-size:1rem; 
  color:lightgray;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
  display: -webkit-box;
  max-height: calc(2 * 1.2em); /* Assuming line height is 1.2em, adjust as needed */
}


.backToFed {
  cursor: pointer;
  display: none;
}

.fedGraphLabel {
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
  width: auto;
  margin-bottom: 0px;
  margin-top: 0px;
  height: 100%;
  margin-right: 0px;
  gap: 6px;
  margin-right: 4px;
}

#fedSearch {
  display: none;
}

.fedGraphLabel-left,
.fedGraphLabel-right {
  align-items: center;
}

.fedGraphLabel-right {
  display: flex;
  justify-content: flex-end;
}

.fedGraphLabel-left {
  display: none;
  align-items: center;
  width: auto;
  justify-content: center;
  position: absolute;
  right: 0.2rem;
  top: 5px;
}


.fedGraphLabel-header-icon {
  font-size: 18px;
  cursor: pointer;
  color: gray;
}

.quick-floor-post-container {
  width: 100%;
  height: 100%;
}

#federation_header_top_web
{
  display: none;
  justify-content: space-between;
  width: auto; 
  height: 100%;
}

#eyeIcon {
  font-size: 1.5em;
  color: darkgray;
  margin-left: 10px;
}

.preview-card
{
    border: 1px solid rgb(204, 204, 204);
    top: 11rem;
    height: auto;
    justify-content: center;
    align-items: baseline;
    display: block;
    overflow-y: auto;
    width: 94%;
    position: fixed;
    background-color: white;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
    z-index: 100010;
    max-width: 15rem;
    border-radius: 16px;
    text-align: left;
}

/* CSS for the mobile view of the left panel */
@media (max-width: 767px) {

  #eyeIcon {
    font-size: 1.5em;
    color: darkgray;
    margin-left: 10px;
    position: absolute;
    right: 12px;
    margin-top: 21px;
  }

  .preview-card
  {
    border: 1px solid rgb(204, 204, 204);
    top: 9rem;
    height: auto;
    justify-content: center;
    align-items: baseline;
    display: block;
    overflow-y: auto;
    width: 94%;
    position: fixed;
    background-color: white;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
    z-index: 100010;
    max-width: 20rem;
    border-radius: 16px;
    text-align: left;
    left: 36px;
  }

  .fedGraphLabel-left {
    display: none;
    align-items: center;
    width: auto;
    height: 40px;
    justify-content: center;
    position: absolute;
    left: 0.2rem;
    margin-left: 16px;
    top: 0px;
  }

  #federation_header_top_mob
  {
    display: none;
    justify-content: space-between;
    width: 100%; 
    height: 40px;
    position: absolute;
    right: 4px;
    top: 8px;
  }

  .fed-root-header { 
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 2.8rem;
    flex-direction: row;
    height: 100%;
    justify-content: center;
    padding: 14px;
    padding-bottom: 4px;
  }
  
  .fed-logo-container {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    margin-top: 0px;
  }

  .fed-logo-mobileview-container {
    width: 40px;
    display: none;
    align-items: center;
    height: 100%;
    margin-left: 4px;
  }

  .fed-logo {
    width: auto;
    height: 100%;
    object-fit: contain; /* Added */
    border-radius: 6px;
  }

  #fedSettings,
  #fedShareFed,
  #fedSearch {
    display: flex;margin-right: 0px;color: white; cursor: pointer; font-size: 18px;
  }

  #fedSettings {
    display: none;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .fed-details-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    height: auto;
    justify-content: start;
    margin-top: 4px;
    margin-bottom: 4px;
    width: 86%;
    gap: 4px;
  }

  .fed-title-desc-holder {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
    width: 100%;
  }
  
  #fedTitle {
    margin-bottom: 0px;
    font-size: 1rem;
    color: #ffff00de;
    font-weight: bold;
  }

  #fedDescription {
    font-size: 0.675rem;
    -webkit-line-clamp: 1;
    display:none;
  }

  .fedGraphLabel {
    margin-top: 0px;
    margin-bottom: 0px;
    width: auto;
    gap: 12px;
    justify-content: end;
    margin-right: 10px;
    height: 32px;
  }
  
}


#fedHomeLogo{
  cursor: pointer;
  }
   
  #profile-input1{
 display: none;  
  }
  
  
  .background-overlay1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Hidden by default */
   
  }
  
  .image-container-wrapper1 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: none; /* Hidden by default */
  }
  
  .image-container1 {
    position: relative;
    width: 100%;
    height: 100%;
   
  }
 
  
  #image-preview1 {
    width: 100%;
    height: auto;
    max-height: 100%;
  }
  
  
  .crop-btn1 {
    position: absolute;
    left:40%;
    
    transform: translateX(-50%);
    margin: 5px;
    padding: 8px 15px;
    border: none;
    background: #337ab7;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
  }
    
  
  .crop-close-btn1 {
    position: absolute;
    left:58%;
    transform: translateX(-50%);
    margin: 5px;
    padding: 8px 15px;
    border:none;
    background: #ff6347; 
    cursor: pointer;
    border-radius: 5px;
  }
    
  
  
  
  .left-move-btn{
    top: 50%;
    left: 10%;
  }
  .right-move-btn{
    top:50%;
    right: 10%;
  }

