
.profile-section-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 12px;
    margin-top: -37px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
    min-height: 150px;
  }
  
  
  /* Profile card image section thingy*/
  .profile-card {
    background-color: #e0e0e0;
    padding: 6px;
    border-radius: 12px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .profile-card img {
    width: 72px;
    height: 72px;
  }
  
  /* Username text */
  .profile-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
  }

  .profile-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
  }  
  
  /* Friend Request button */
  .friend-request {
    background-color: #00c3e3;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s;
  }
  
  .friend-request:hover {
    background-color: #00aad6;
  }
  
  .friend-icon {
    width: 19px;
    height: 19px;
    margin-right: 6px;
  }
  
  /* fc details shown on hover */
  .friend-details {
    display: none;
    position: absolute;
    top: 115%;
    left: 0;
    background-color: white;
    color: #333;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 100;
    font-size: 14px;
  }
  
  .friend-request:hover .friend-details {
    display: block;
  }
  
  
  .copy-discord {
    cursor: pointer;
    color: #0077cc;
    font-weight: bold;
  }
  
  .copy-discord:hover {
    text-decoration: underline;
  }
  
  
  .profile-info {
    display: flex;
    align-items: center;
    margin-top: 8px;
  }
  
  .info-label {
    background-color: #e0e0e0;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    margin-right: 10px;
    min-width: 130px;
    text-align: right;
  }
  
  .info-value {
    font-size: 14px;
    font-weight: bold;
    color: #333;
  }

  .info-box {
    background-color: #e0e0e0;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    min-width: 140px;
  }

  .profile-info-side-horizontal {
    display: flex;
    gap: 10px;
  }

.profile-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  
  .profile-left {
    display: flex;
    align-items: center;
    position: relative; 
  }

  
.follow-button {
    background-color: #b8e986; 
    color: #333;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.2s;
  }
  
  .follow-button:hover {
    background-color: #a3db76;
  }

  .yeah-icon {
    width: 18px; 
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
  }

  .action-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
  }

  .dot-divider {
    width: 100%;
    height: 12px;
    background-image: radial-gradient(#c0c0c0 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    background-repeat: repeat-x;
    margin-top: -10px; 
    margin-bottom: 25px;
  }

  @media screen and (max-width: 600px) {
    .profile-section-wrapper {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  
    .profile-info {
      text-align: center;
      margin-left: 0;
    }
  
    .friend-details {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 6px;
      margin-top: 10px;
    }
  
    .friend-request {
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
  
    .stat-box {
      width: 90%;
      margin: 4px auto;
    }
  
    .speech-bubble {
      max-width: 90%;
      margin: 10px auto;
    }
  }
  
  