 .profile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      font-family: var(--font2);
      color: #ffffff;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Modal Box */
    .profile-modal {
      background-color: #121212;
      border: 1px solid #2a2a2a;
      border-radius: 16px;
      width: 100%;
      max-width: 600px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      padding: 40px;
      box-sizing: border-box;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    /* Custom Scrollbar for the Modal */
    .profile-modal::-webkit-scrollbar {
      width: 6px;
    }

    .profile-modal::-webkit-scrollbar-track {
      background: #121212;
    }

    .profile-modal::-webkit-scrollbar-thumb {
      background: #333;
      border-radius: 3px;
    }

    .profile-modal::-webkit-scrollbar-thumb:hover {
      background: #444;
    }
.modal-header {
      margin-bottom: 32px;
    }

    .modal-header h2 {
      font-size: 24px;
      font-weight: 600;
      margin: 0 0 8px 0;
    }

    .modal-header p {
      color: #888;
      font-size: 14px;
      margin: 0;
    }
     .avatar-group {
      align-items: flex-start;
    }

    .avatar-upload {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 4px;
    }

    .avatar-preview {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background-color: #222;
      border: 1px solid #333;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #666;
    }

    .avatar-preview img {
      border: 3px solid white;
    }

    .file-upload-btn {
      background-color: #222;
      border: 1px solid #333;
      padding: 8px 16px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 13px;
      font-weight: 500;
      color: #fff;
      text-transform: none;
      letter-spacing: normal;
      margin: 0;
      transition: background-color 0.2s;
    }

    .file-upload-btn:hover {
      background-color: #2b2b2b;
    }

    input[type="file"] {
      display: none;
    }

    /* Input Prefixes for Socials */
    .input-wrapper {
      display: flex;
      align-items: center;
      background-color: #1a1a1a;
      border: 1px solid #333;
      border-radius: 8px;
      padding-left: 16px;
    }

    .input-wrapper:focus-within {
      border-color: #555;
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05);
    }

    .input-wrapper .prefix {
      color: #555;
      font-size: 15px;
      user-select: none;
      padding-right: 2px;
    }

    .input-wrapper input {
      border: none;
      background: transparent;
      padding-left: 0;
    }

    .input-wrapper input:focus {
      box-shadow: none;
    }

    /* Select element resetting styling */
    select {
      appearance: none;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='white'><path d='M0 3l5 5 5-5z'/></svg>");
      background-repeat: no-repeat;
      background-position: right 16px center;
    }

    /* Action Buttons */
    .form-actions {
      display: flex;
      justify-content: flex-end;
      gap: 12px;
      margin-top: 40px;
    }
.profile-overlay .avatar-group {
    align-items: flex-start;
}
.profile-overlay .form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}
.avatar-group {
    align-items: flex-start;
}
.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}
.profile-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s ease;
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s ease;
}
.profile-overlay input[type="text"], .profile-overlay input[type="number"], .profile-overlay input[type="url"], .profile-overlay textarea, .profile-overlay select {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}
.profile-overlay label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
@media (max-width: 480px) {
    .profile-overlay .form-inline-group {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
.profile-overlay .form-inline-group {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 16px;
}
.profile-overlay .form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}
.profile-overlay .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 40px;
}
.profile-overlay .btn-secondary {
    background: transparent;
    border: 1px solid #333;
    color: #aaa;
}
.profile-overlay .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.profile-overlay .divider {
    border: 0;
    border-top: 1px solid #2a2a2a;
    margin: 32px 0 16px 0;
}
.divider {
    border: 0;
    border-top: 1px solid #2a2a2a;
    margin: 32px 0 16px 0;
}
.divider {
    height: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    margin: 1.5rem 0;
} 

.profile-overlay .input-wrapper input {
    border: none !important;
    background: transparent !important;
    padding-left: 0 !important;
}
.profile-overlay .btn-secondary {
    background: transparent;
    border: 1px solid #333;
    color: #aaa;
}
.profile-overlay .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    height: max-content;
}