/* Szekely Membership Plugin Specific Styles */
.szekely-membership * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.szekely-membership {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--color-two); /* Classic Marine Darker */
    line-height: 1.6;
}

/* Profile Page Container */
.szekely-membership .author-page {
    max-width: 800px;
    margin: 40px auto;
    padding: 24px;
    background: var(--color-one); /* White */
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Profile Picture */
.szekely-membership .szekely-profile-pic {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 16px;
    object-fit: cover;
}

/* Joined Date */
.szekely-membership .user-joined {
    font-size: 14px;
    font-weight: 500;
    color: #86868b;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.szekely-membership .user-joined i {
    font-size: 14px;
}

/* Common List Styles */
.szekely-membership .liked-posts,
.szekely-membership .user-comments,
.szekely-membership .points-breakdown {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.szekely-membership .liked-posts li,
.szekely-membership .user-comments li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-three); /* Light Gray */
    font-size: 16px;
}

.szekely-membership .liked-posts li a,
.szekely-membership .user-comments li a {
    color: var(--color-four); /* Brightened Marine */
    text-decoration: none;
    transition: color 0.2s ease;
}

.szekely-membership .liked-posts li a:hover,
.szekely-membership .user-comments li a:hover {
    color: var(--color-two); /* Classic Marine Darker */
}

/* Dislike Post Icon */
.szekely-membership .liked-posts .dislike-post {
    cursor: pointer;
    color: #ff453a;
    margin-left: 8px;
    font-size: 14px;
    transition: color 0.2s ease;
}

.szekely-membership .liked-posts .dislike-post:hover {
    color: #d9362e;
}

/* Points Display */
.szekely-membership .szekely-points {
    padding: 20px;
    background: var(--color-one); /* White */
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    margin: 16px 0;
    text-align: center;
}

.szekely-membership .szekely-points h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-two); /* Classic Marine Darker */
    margin-bottom: 8px;
}

.szekely-membership .szekely-points p {
    font-size: 14px;
    color: #86868b;
}

.szekely-membership .points-breakdown li {
    padding: 5px 0;
    font-size: 13px;
    display: flex;
    gap: 8px;
}

.szekely-membership .points-breakdown li i {
    font-size: 13px;
    line-height: inherit;
}

.szekely-membership .points-breakdown li .fas.fa-eye { color: #86868b; }
.szekely-membership .points-breakdown li .fas.fa-thumbs-up { color: var(--color-four); }
.szekely-membership .points-breakdown li .fas.fa-thumbs-down { color: #ff453a; }
.szekely-membership .points-breakdown li .fas.fa-laugh { color: #ff9f0a; }
.szekely-membership .points-breakdown li .fas.fa-comment { color: #34c759; }
.szekely-membership .points-breakdown li .fas.fa-star { color: #ffd60a; }
.szekely-membership .points-breakdown li .fas.fa-plus-square { color: #5856d6; }
.szekely-membership .points-breakdown li .fas.fa-calendar-check { color: #007aff; }
.szekely-membership .points-breakdown li .fas.fa-share-alt { color: #ff2d55; } /* Added for share icon */

.szekely-membership .points-breakdown li strong {
    color: var(--color-four); /* Brightened Marine */
}

/* Profile Edit Form */
.szekely-membership .szekely-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.szekely-membership .form-group {
    display: flex;
    flex-direction: column;
}

.szekely-membership .form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-two); /* Classic Marine Darker */
    margin-bottom: 6px;
}

.szekely-membership .form-group input,
.szekely-membership .form-group textarea,
.szekely-membership .form-group select {
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid var(--color-three); /* Light Gray */
    border-radius: 8px;
    background: var(--color-one); /* White */
    transition: border-color 0.2s ease;
    width: 100%;
    max-width: 360px;
}

.szekely-membership .form-group input:focus,
.szekely-membership .form-group textarea:focus,
.szekely-membership .form-group select:focus {
    border-color: var(--color-four); /* Brightened Marine */
    outline: none;
}

.szekely-membership .form-group textarea {
    resize: vertical;
}

/* Upload Button */
.szekely-membership .profile-pic-preview {
    margin-bottom: 12px;
}

.szekely-membership .szekely-upload-button {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-one); /* White */
    background: var(--color-four); /* Brightened Marine */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.szekely-membership .szekely-upload-button:hover {
    background: var(--color-two); /* Classic Marine Darker */
}

.szekely-membership .szekely-upload-button i {
    font-size: 14px;
}

/* General Button */
.szekely-membership .szekely-button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-one); /* White */
    background: var(--color-four); /* Brightened Marine */
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.szekely-membership .szekely-button:hover {
    background: var(--color-two); /* Classic Marine Darker */
}

/* User Level Styles */
.szekely-membership .user-level {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.szekely-membership .user-level i {
    font-size: 14px;
}

.szekely-membership .level-subscriber { background: var(--color-three); color: #333; }
.szekely-membership .level-contributor { background: #cce5ff; color: var(--color-two); }
.szekely-membership .level-author { background: #ffd60a33; color: #693c00; }
.szekely-membership .level-editor { background: #34c75933; color: #1a3c1a; }

/* Post Submission */
.szekely-membership .szekely-post-submission {
    margin: 16px 0;
    padding: 20px;
    background: var(--color-one); /* White */
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.szekely-membership .szekely-post-submission h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-two); /* Classic Marine Darker */
    margin-bottom: 16px;
}

/* Notification Container */
#szekely-notification-container {
    position: fixed;
    top: 8em;
    right: 16px;
    border-radius: 19px!important;
    width: 320px;
    max-height: calc(100vh - 9em); /* Prevent overflow */
    overflow-y: auto; /* Allow scrolling */
    z-index: 10000; /* Increased to avoid overlap */
}

/* Notification Popup */
.szekely-notification {
    position: absolute; /* Relative to container */
    right: 0;
    width: 100%;
    padding: 12px 20px;
    
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10001; /* Above container */
    opacity: 0;
    transform: translateY(-10px);
    animation: slideIn 0.3s ease forwards;
}

.szekely-notification.success-message {
    background-color: #28a745;
    color: #fff !important;
    text-align: center;
}

.szekely-notification.error-message {
    background-color: #dc3545;
    color: #fff !important;
}

.szekely-notification-close {
    margin-left: 10px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.szekely-notification-close:hover {
    color: #ddd;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* User Posts */
.szekely-membership .szekely-user-posts {
    margin: 16px 0;
}

.szekely-membership .user-post-item {
    padding: 16px;
    background: var(--color-one); /* White */
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    margin-bottom: 16px;
}

.szekely-membership .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: #86868b;
    margin-bottom: 12px;
}

.szekely-membership .post-author {
    font-weight: 500;
    color: var(--color-two); /* Classic Marine Darker */
}

.szekely-membership .post-category {
    background: var(--color-three); /* Light Gray */
    padding: 2px 8px;
    border-radius: 6px;
    color: var(--color-two);
}

.szekely-membership .post-date {
    font-style: italic;
}

.szekely-membership .post-content-link {
    text-decoration: none; /* Nincs aláhúzás */
    color: inherit; /* Örökli a szülő színét */
    display: block; /* Teljes kattintható terület */
}

.szekely-membership .post-content-link:hover .post-content {
    background: rgba(0, 0, 0, 0.02); /* Finom hover effekt */
}

.szekely-membership .post-content {
    font-size: 16px;
    color: var(--color-two); /* Classic Marine Darker */
    transition: background 0.2s ease;
}

.szekely-membership .post-content p {
    margin: 8px 0;
}

.szekely-membership .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Deprecated File Upload Wrapper */
.szekely-membership .file-upload-wrapper {
    display: none; /* Elrejtve, mert Media Uploader-t használunk */
}

/* Barátmeghívó rendszer */
.szekely-membership .szekely-invite-friends {
    padding: 20px;
    background: var(--color-one); /* White */
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    margin: 16px 0;
    text-align: center;
}

.szekely-membership .szekely-invite-friends h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-two); /* Classic Marine Darker */
    margin-bottom: 8px;
}

.szekely-membership .invite-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
    justify-content: center;
}

.szekely-membership .invite-link input {
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid var(--color-three); /* Light Gray */
    border-radius: 8px;
    background: var(--color-one); /* White */
    width: 100%;
    max-width: 400px;
    cursor: text;
}

.szekely-membership .invite-link button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-one); /* White */
    background: var(--color-four); /* Brightened Marine */
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.szekely-membership .invite-link button:hover {
    background: var(--color-two); /* Classic Marine Darker */
}

/* Styles for Secret Keeper Safe */
.secret-keeper-safe-container {
  background: var(--color-one);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.safe-generate-btn, .safe-submit-btn, .safe-access-btn, .safe-unlock-btn,
.safe-save-btn, .safe-cancel-btn, .safe-edit-btn, .safe-add-btn,
.safe-change-pin-btn, .safe-reset-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.safe-generate-btn, .safe-submit-btn, .safe-unlock-btn, .safe-save-btn,
.safe-change-pin-btn {
  background: var(--color-four);
  color: var(--color-one);
  border: none;
}

.safe-generate-btn:hover, .safe-submit-btn:hover, .safe-unlock-btn:hover,
.safe-save-btn:hover, .safe-change-pin-btn:hover {
  background: var(--color-two);
}

.safe-access-btn, .safe-edit-btn {
  background: var(--color-two);
  color: var(--color-one);
  border: none;
  text-decoration: none;
}

.safe-access-btn:hover, .safe-edit-btn:hover {
  background: var(--color-four);
}

.safe-cancel-btn, .safe-reset-btn {
  background: var(--color-three);
  color: var(--color-two);
  border: none;
}

.safe-cancel-btn:hover, .safe-reset-btn:hover {
  background: #d1d1d1;
}

.safe-add-btn {
  position: fixed;
  bottom: 80px;
  right: 30px;
  background: var(--color-four);
  color: var(--color-one);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.safe-add-btn:hover {
  background: var(--color-two);
  transform: scale(1.05);
}

.safe-input, .safe-title-input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--color-three);
  border-radius: 8px;
  font-size: 16px;
  background: var(--color-one);
  transition: border-color 0.2s ease;
}

.safe-input:focus, .safe-title-input:focus {
  border-color: var(--color-four);
  outline: none;
}

.safe-warning, .safe-error {
  color: #d63031;
  font-size: 14px;
  margin: 10px 0;
}

.safe-education-notice {
  background: #fff3cd;
  border: 1px solid #ffeeba;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #856404;
}

.safe-container {
  background: var(--color-three);
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.safe-header {
  background: var(--color-two);
  padding: 8px 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.safe-logo {
  max-width: 90px;
  height: auto;
}

.safe-auth-box {
  background: var(--color-one);
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.safe-auth-title, .safe-main-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-two);
  margin-bottom: 20px;
  text-align: center;
}

.safe-note-box {
  background: var(--color-one);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.safe-note-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-two);
  margin-bottom: 10px;
}

.safe-note-content {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.safe-editor {
  border: 1px solid var(--color-three);
  border-radius: 8px;
  background: var(--color-one);
}

.safe-button-group {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
#headerimg{
    display:none;
}

/* User Badges */
.szekely-membership .szekely-user-badges {
    padding: 20px;
    background: var(--color-one); /* White */
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    margin: 16px 0;
    text-align: center;
}

.szekely-membership .szekely-user-badges h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-two); /* Classic Marine Darker */
    margin-bottom: 16px;
}

.szekely-membership .badges-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.szekely-membership .badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 150px;
    text-align: center;
}

.szekely-membership .badge-image {
    width: 164px;
    height: 164px;
    object-fit: contain;
    margin-bottom: 8px;
    transition: transform 0.2s ease;
}

.szekely-membership .badge-item:hover .badge-image {
    transform: scale(1.1);
}

.szekely-membership .badge-details strong {
    font-size: 16px;
    color: var(--color-four); /* Brightened Marine */
}

.szekely-membership .badge-details p {
    font-size: 12px;
    color: #86868b;
    margin-top: 4px;
}

/* Leaderboard */
.szekely-membership .szekely-leaderboard {
    padding: 20px;
    background: var(--color-one);
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    margin: 16px 0;
}

.szekely-membership .szekely-leaderboard h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-two);
    margin-bottom: 16px;
}

.szekely-membership .leaderboard-list {
    list-style: none;
    padding: 0;
}

.szekely-membership .leaderboard-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.szekely-membership .leaderboard-item:last-child {
    border-bottom: none;
}

.szekely-membership .leaderboard-item .rank {
    font-weight: bold;
    color: var(--color-four);
    width: 30px;
}

.szekely-membership .leaderboard-item .user-name {
    flex: 1;
    color: var(--color-two);
    text-decoration: none;
}

.szekely-membership .leaderboard-item .user-name:hover {
    text-decoration: underline;
}

.szekely-membership .leaderboard-item .points {
    width: 100px;
    text-align: right;
    color: #86868b;
}

.szekely-membership .leaderboard-item .level {
    width: 150px;
    text-align: right;
    color: var(--color-four);
}


/* Profile Notes */
.szekely-membership .szekely-profile-notes-container {
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 16px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.szekely-membership .szekely-profile-notes-container h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center;
    color: #1a202c; /* Tailwind text-gray-800 */
}

.szekely-membership .profile-notes-list {
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.szekely-membership .profile-note-box {
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.szekely-membership .profile-note-box.read-only {
    background: #f7fafc; /* Tailwind bg-gray-50 */
    border: 1px solid #e2e8f0; /* Tailwind border-gray-200 */
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.szekely-membership .profile-note-box.edit-mode {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.szekely-membership .note-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a202c; /* Tailwind text-gray-800 */
}

.szekely-membership .note-content {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 8px;
    font-size: 16px;
    color: #4a5568; /* Tailwind text-gray-600 */
}

.szekely-membership .profile-note-image {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
}

.szekely-membership .note-title-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #e2e8f0; /* Tailwind border-gray-200 */
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 8px;
}

.szekely-membership .note-title-input:focus {
    outline: none;
    border-color: #4299e1; /* Tailwind border-blue-500 */
    box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.5); /* Tailwind ring-blue-500 */
}

.szekely-membership .note-editor {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 8px;
}

.szekely-membership .ql-editor {
    min-height: 150px;
    font-size: 16px;
    touch-action: manipulation;
}

.szekely-membership .ql-toolbar {
    touch-action: manipulation;
}

.szekely-membership .profile-note-add-btn,
.szekely-membership .save-note-btn,
.szekely-membership .edit-btn,
.szekely-membership .delete-note-btn,
.szekely-membership .upload-note-image-btn,
.szekely-membership .remove-note-image-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.szekely-membership .profile-note-add-btn,
.szekely-membership .save-note-btn {
    background: #4299e1; /* Tailwind bg-blue-500 */
    color: #ffffff;
}

.szekely-membership .profile-note-add-btn:hover,
.szekely-membership .save-note-btn:hover {
    background: #3182ce; /* Tailwind hover:bg-blue-600 */
    transform: scale(1.05);
}

.szekely-membership .edit-btn,
.szekely-membership .upload-note-image-btn {
    background: #718096; /* Tailwind bg-gray-500 */
    color: #ffffff;
}

.szekely-membership .edit-btn:hover,
.szekely-membership .upload-note-image-btn:hover {
    background: #5a687d; /* Tailwind hover:bg-gray-600 */
    transform: scale(1.05);
}

.szekely-membership .delete-note-btn,
.szekely-membership .remove-note-image-btn {
    background: #f56565; /* Tailwind bg-red-500 */
    color: #ffffff;
}

.szekely-membership .delete-note-btn:hover,
.szekely-membership .remove-note-image-btn:hover {
    background: #e53e3e; /* Tailwind hover:bg-red-600 */
    transform: scale(1.05);
}

.szekely-membership .profile-note-image-upload {
    margin-bottom: 12px;
}

.szekely-membership .no-notes-message {
    font-size: 16px;
    color: #718096; /* Tailwind text-gray-500 */
    text-align: center;
}


/* Post Submission Feedback */
.szekely-post-submission .hidden {
    display: none;
}

.szekely-post-submission #post-submission-feedback {
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
}

.szekely-post-submission .bg-gray-100 {
    background-color: #f7fafc; /* Tailwind bg-gray-100 */
}

.szekely-post-submission .bg-green-100 {
    background-color: #f0fff4; /* Tailwind bg-green-100 */
}

.szekely-post-submission .bg-red-100 {
    background-color: #fefcbf; /* Tailwind bg-red-100 */
}

.szekely-post-submission .loading-spinner::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #4a5568; /* Tailwind text-gray-600 */
    border-top-color: #4299e1; /* Tailwind blue-500 */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
/* User Posts Trash Icon */
.szekely-user-posts .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.szekely-user-posts .delete-post {
    cursor: pointer;
    margin-left: 8px;
}

.szekely-user-posts .delete-post i {
    font-size: 16px;
    transition: color 0.2s ease;
}
.szekely-group-feed .feed-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.szekely-connections h2 {
    font-size: 1.5em;
    margin-top: 20px;
}

.szekely-connections ul {
    list-style: none;
    padding: 0;
}

.szekely-connections li {
    margin-bottom: 10px;
}

.szekely-connections a {
    margin-left: 10px;
    color: #013A63;
    text-decoration: none;
}

.szekely-connections a:hover {
    text-decoration: underline;
}
/* Follow/Unfollow Buttons */
.szekely-membership .szekely-follow-user {
    margin: 16px 0;
}

.szekely-membership .follow-button,
.szekely-membership .unfollow-button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.szekely-membership .follow-button {
    background: #4299e1; /* Tailwind bg-blue-500 */
}

.szekely-membership .follow-button:hover {
    background: #3182ce; /* Tailwind hover:bg-blue-600 */
    transform: scale(1.05);
}

.szekely-membership .unfollow-button {
    background: #f56565; /* Tailwind bg-red-500 */
}

.szekely-membership .unfollow-button:hover {
    background: #e53e3e; /* Tailwind hover:bg-red-600 */
    transform: scale(1.05);
}

/* Followed Users List */
.szekely-membership .szekely-followed-users {
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    margin: 16px 0;
}

.szekely-membership .szekely-followed-users h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-two);
    margin-bottom: 16px;
}

.szekely-membership .szekely-followed-users ul {
    list-style: none;
    padding: 0;
}

.szekely-membership .szekely-followed-users li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.szekely-membership .szekely-followed-users li:last-child {
    border-bottom: none;
}

.szekely-membership .szekely-followed-users li a {
    color: var(--color-four);
    text-decoration: none;
}

.szekely-membership .szekely-followed-users li a:hover {
    text-decoration: underline;
}

/* Followed Feed */
.szekely-membership .szekely-followed-feed {
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    margin: 16px 0;
}

.szekely-membership .szekely-followed-feed h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-two);
    margin-bottom: 16px;
}

.szekely-membership .szekely-followed-feed .feed-item {
    padding: 16px;
    background: #f7fafc; /* Tailwind bg-gray-50 */
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.szekely-membership .szekely-followed-feed .feed-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.szekely-membership .szekely-followed-feed .feed-item h3 a {
    color: var(--color-four);
    text-decoration: none;
}

.szekely-membership .szekely-followed-feed .feed-item h3 a:hover {
    text-decoration: underline;
}

.szekely-membership .szekely-followed-feed .feed-item p {
    font-size: 16px;
    color: #4a5568; /* Tailwind text-gray-600 */
    margin-bottom: 8px;
}

.szekely-membership .szekely-followed-feed .feed-item .post-meta {
    font-size: 14px;
    color: #86868b;
}
/* Follow/Unfollow Button on Author Page */
.szekely-membership .szekely-follow-user {
    margin: 20px 0;
    text-align: center; /* Center the button on author pages */
}

.szekely-membership .szekely-follow-user .follow-button,
.szekely-membership .szekely-follow-user .unfollow-button {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Reacted Posts (Liked, Disliked, Laughed) */
.szekely-membership .szekely-reacted-posts {
    margin: 16px 0;
}

.szekely-membership .reacted-section {
    margin-bottom: 24px;
}

.szekely-membership .reacted-section .section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-two); /* Classic Marine Darker */
    margin-bottom: 16px;
    text-align: center;
}

.szekely-membership .reacted-post-item {
    padding: 16px;
    background: var(--color-one); /* White */
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    margin-bottom: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.szekely-membership .reacted-post-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.szekely-membership .reacted-post-item .post-title {
    font-size: 18px;
    color: var(--color-four); /* Brightened Marine */
    margin-bottom: 8px;
}

.szekely-membership .reacted-post-item .post-content {
    font-size: 16px;
    color: var(--color-two); /* Classic Marine Darker */
}

.szekely-membership .reacted-post-item .post-content p {
    margin: 8px 0;
}

.szekely-membership .reacted-post-item .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.szekely-membership .reacted-post-item .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: #86868b;
    margin-bottom: 12px;
    justify-content: space-between;
}

.szekely-membership .reacted-post-item .remove-reaction {
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s ease;
}

.szekely-membership .no-posts {
    font-size: 16px;
    color: #718096; /* Tailwind text-gray-500 */
    text-align: center;
    padding: 16px;
    background: #f7fafc; /* Tailwind bg-gray-50 */
    border-radius: 8px;
}

/* In styles.css, add at the end or after .szekely-reacted-posts styles */

/* User Comments */
.szekely-membership .szekely-user-comments {
    margin: 16px 0;
}

.szekely-membership .szekely-user-comments .section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-two); /* Classic Marine Darker */
    margin-bottom: 16px;
    text-align: center;
}

.szekely-membership .comment-item {
    padding: 16px;
    background: var(--color-one); /* White */
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    margin-bottom: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.szekely-membership .comment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.szekely-membership .comment-post-title {
    font-size: 18px;
    color: var(--color-four); /* Brightened Marine */
    margin-bottom: 8px;
}

.szekely-membership .comment-content {
    font-size: 16px;
    color: var(--color-two); /* Classic Marine Darker */
}

.szekely-membership .comment-content p {
    margin: 8px 0;
}

.szekely-membership .comment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: #86868b;
    margin-bottom: 12px;
    justify-content: space-between;
}

.szekely-membership .no-comments {
    font-size: 16px;
    color: #718096; /* Tailwind text-gray-500 */
    text-align: center;
    padding: 16px;
    background: #f7fafc; /* Tailwind bg-gray-50 */
    border-radius: 8px;
}


/* Follow/Unfollow Button on Author Page */
.follow_User_Button .szekely-follow-user {
    margin: 24px 0;
    text-align: center; /* Center the button on author pages */
    display: flex;
    justify-content: center;
}

.follow_User_Button .szekely-follow-user .follow-button,
.follow_User_Button .szekely-follow-user .unfollow-button {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.follow_User_Button .szekely-follow-user .follow-button {
    background: #4299e1; /* Tailwind bg-blue-500 */
    color: #ffffff;
}

.follow_User_Button .szekely-follow-user .follow-button:hover {
    background: #3182ce; /* Tailwind hover:bg-blue-600 */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(66, 153, 225, 0.3);
}

.follow_User_Button .szekely-follow-user .follow-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(66, 153, 225, 0.2);
}

.follow_User_Button .szekely-follow-user .unfollow-button {
    background: #f56565; /* Tailwind bg-red-500 */
    color: #ffffff;
}

.follow_User_Button .szekely-follow-user .unfollow-button:hover {
    background: #e53e3e; /* Tailwind hover:bg-red-600 */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 101, 101, 0.3);
}

.follow_User_Button .szekely-follow-user .unfollow-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(245, 101, 101, 0.2);
}

/* Add icons to buttons for visual enhancement */
.follow_User_Button .szekely-follow-user .follow-button::before {
    content: '\f234'; /* Font Awesome user-plus icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
}

.follow_User_Button .szekely-follow-user .unfollow-button::before {
    content: '\f235'; /* Font Awesome user-times icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
}

.szekely-notification {
    position: relative;
    overflow: hidden;
}

.notification-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    transform-origin: left;
    animation: progressShrink 4s linear forwards;
    z-index: 1;
}

@keyframes progressShrink {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}

/* Optional: Different color for success/error */
.success-message .notification-progress-bar {
    background: rgba(34, 197, 94, 0.9); /* green */
}

.error-message .notification-progress-bar {
    background: rgba(239, 68, 68, 0.9); /* red */
}