/* Color Variables */
:root {
    --facebook-blue: #1877f2;
    --facebook-blue-hover: #166fe5;
    --facebook-gray: #f0f2f5;
}

/* Base Styles */
.facebook-blue { background-color: var(--facebook-blue); }
.facebook-blue:hover { background-color: var(--facebook-blue-hover); }
.facebook-gray { background-color: var(--facebook-gray); }
.post-shadow { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }

/* Online Indicator */
.online-dot { 
    width: 8px; 
    height: 8px; 
    background-color: #31a24c; 
    border-radius: 50%; 
    position: absolute; 
    bottom: 2px; 
    right: 2px; 
    border: 2px solid white; 
}

/* Profile Photo Upload */
.profile-photo-upload {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}
.profile-photo-upload:hover {
    transform: scale(1.05);
}
.profile-photo-upload input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.follow-btn {
    background-color: var(--facebook-blue);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}
.unfollow-btn {
    background-color: #e4e6eb;
    color: #050505;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}

/* File Preview */
.file-preview {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    margin: 5px;
}

/* Loading Animation */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}
@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

/* Navigation */
.nav-item {
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.nav-item:hover {
    background-color: var(--facebook-gray);
}

/* Post Actions */
.edit-post-btn, .delete-post-btn {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 5px;
}
.edit-post-btn {
    background-color: #e7f3ff;
    color: var(--facebook-blue);
}
.delete-post-btn {
    background-color: #ffe7e7;
    color: #f02849;
}

/* Chat Styles */
.chat-container {
    height: 400px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px;
    background-color: #f8f9fa;
}
.message {
    max-width: 70%;
    padding: 8px 12px;
    border-radius: 18px;
    margin-bottom: 8px;
    position: relative;
}
.message-sent {
    background-color: #007bff;
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}
.message-received {
    background-color: #e9ecef;
    color: #333;
    margin-right: auto;
    border-bottom-left-radius: 4px;
}
.message-time {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 4px;
    text-align: right;
}
.file-message {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px;
    margin-top: 4px;
}

/* Quick Navigation */
.quick-nav {
    background: linear-gradient(135deg, var(--facebook-blue) 0%, var(--facebook-blue-hover) 100%);
    padding: 12px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.quick-nav-item:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.quick-nav-icon {
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.quick-nav-text {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Profile Logo */
.profile-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.profile-logo i {
    font-size: 40px;
    color: white;
}

/* Share Button */
.share-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    margin-left: 5px;
}
.share-btn:hover {
    background-color: #45a049;
}

/* Share Modal */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.share-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
}
.share-options {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}
.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s;
}
.share-option:hover {
    background-color: #f5f5f5;
}
.share-icon {
    font-size: 24px;
    margin-bottom: 5px;
}
.facebook-share { color: #3b5998; }
.twitter-share { color: #1da1f2; }
.linkedin-share { color: #0077b5; }
.whatsapp-share { color: #25d366; }
.link-share { color: #6c757d; }

/* Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background-color: var(--facebook-gray);
    border-radius: 18px;
    margin-bottom: 8px;
    max-width: 70px;
}
.typing-dot {
    width: 6px;
    height: 6px;
    background-color: #666;
    border-radius: 50%;
    margin: 0 2px;
    animation: typing 1.4s infinite ease-in-out;
}
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes typing {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--facebook-blue);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: flex;
    align-items: center;
    max-width: 300px;
    transform: translateX(150%);
    transition: transform 0.3s ease;
}
.notification.show {
    transform: translateX(0);
}
.notification.success { background-color: #4CAF50; }
.notification.error { background-color: #f44336; }
.notification.warning { background-color: #ff9800; }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}
.pagination-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}
.pagination-btn:hover {
    background-color: #f0f0f0;
}
.pagination-btn.active {
    background-color: var(--facebook-blue);
    color: white;
    border-color: var(--facebook-blue);
}
.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Work Pendrive Lock */
.lock-screen {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: 8px;
}
.lock-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 300px;
}
.otp-input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Red Bird Logo */
.red-bird-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 50%;
    background: #e74c3c;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.red-bird-logo svg {
    width: 40px;
    height: 40px;
}

/* NEW STYLES FOR REQUIREMENTS */

/* Event Time Fix */
.event-time-display {
    font-family: monospace;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

/* Tagging System */
.user-tag {
    background-color: #e7f3ff;
    color: #1877f2;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.875rem;
    margin: 0 2px;
    cursor: pointer;
}

.user-tag:hover {
    background-color: #d0e2ff;
}

.tag-suggestions {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tag-suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.tag-suggestion-item:hover {
    background-color: #f8f9fa;
}

.tag-suggestion-item:last-child {
    border-bottom: none;
}

/* Group Chat Fix */
.group-chat-active {
    border-left: 4px solid #1877f2;
}

/* Settings Close Fix */
.settings-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.settings-close-btn:hover {
    color: #333;
}

/* File Download Styles */
.file-download-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.file-download-btn:hover {
    background: #218838;
}

/* Block User Styles */
.blocked-indicator {
    background: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 8px;
}

/* OTP Verification for Account Deletion */
.otp-verification {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

/* Notification Badge */
.notification-badge {
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* Enhanced Sign Up Form */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Sign Up Page Styles */
.signup-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--facebook-blue);
}

/* People You May Know Styles */
.people-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scrollbar-width: thin;
}

.people-grid::-webkit-scrollbar {
    height: 6px;
}

.people-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.person-card {
    min-width: 150px;
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.person-card:hover {
    transform: scale(1.05);
}

.person-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-size: 12px;
}

.mobile-nav-item.active {
    color: var(--facebook-blue);
}

.mobile-nav-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

/* Settings Page Styles */
.settings-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.settings-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.settings-item:last-child {
    border-bottom: none;
}

.settings-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--facebook-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--facebook-blue);
}

/* People You May Know Profile Page Styles */
.profile-page {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px;
    color: white;
    text-align: center;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 4px solid white;
    overflow: hidden;
    background: #f0f2f5;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.profile-content {
    padding: 20px;
}

.about-section {
    margin-bottom: 30px;
}

/* SMS Notification Tone */
.sms-tone-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.tone-option {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

.tone-option.selected {
    border-color: #1877f2;
    background-color: #f0f8ff;
}

/* Block User Styles */
.blocked-users-list {
    max-height: 300px;
    overflow-y: auto;
}

.blocked-user-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

/* Account Deletion Warning */
.delete-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
}

/* Pagination for Work Pendrive */
.pendrive-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 5px;
}

.pendrive-page-btn {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 4px;
}

.pendrive-page-btn.active {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

/* Event File Upload */
.event-file-upload {
    margin-top: 15px;
}

/* Group Member Management */
.group-members {
    max-height: 200px;
    overflow-y: auto;
    margin-top: 10px;
}

.member-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #eee;
}

/* Password Reset Styles */
.reset-password-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .mobile-padding {
        padding: 1rem !important;
    }
    
    .mobile-text-center {
        text-align: center !important;
    }
    
    .mobile-stack {
        flex-direction: column !important;
    }
    
    .mobile-space-y-4 > * + * {
        margin-top: 1rem !important;
    }
    
    /* Header adjustments */
    header .flex.justify-between {
        flex-direction: column;
        gap: 1rem;
    }
    
    header .flex.items-center.space-x-4 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    /* Quick nav adjustments */
    .quick-nav .flex.justify-between {
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .quick-nav-item {
        min-width: 80px;
        font-size: 0.7rem;
    }
    
    /* Main grid adjustments */
    .grid.grid-cols-1.lg\:grid-cols-4 {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    /* Sidebar adjustments */
    .lg\:col-span-1 {
        order: 3;
    }
    
    .lg\:col-span-2 {
        order: 1;
    }
    
    /* Post creation adjustments */
    .bg-white.rounded-lg.shadow-sm.p-6.mb-6 .flex.items-center.space-x-4 {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bg-white.rounded-lg.shadow-sm.p-6.mb-6 .flex.space-x-4 {
        justify-content: space-around;
    }
    
    /* Modal adjustments */
    .fixed.inset-0 .bg-white.rounded-lg {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
    }
    
    /* Profile section adjustments */
    .bg-white.rounded-lg.shadow-sm.p-6 .space-y-3 button {
        font-size: 0.9rem;
        padding: 0.75rem 0.5rem;
    }
    
    /* Active users section */
    #activeUsersList {
        max-height: 200px;
    }
    
    /* Service available cards */
    #serviceAvailable .p-4.border.rounded-lg {
        padding: 1rem !important;
    }
    
    /* Quick actions */
    .bg-white.rounded-lg.shadow-sm.p-6 .space-y-3 button {
        justify-content: flex-start;
    }
    
    /* Mobile-specific improvements */
    button, .clickable {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 16px;
    }
    
    /* Improve form inputs */
    input, textarea, select {
        font-size: 16px;
        padding: 12px;
    }
    
    /* Improve modal scrolling */
    .fixed.inset-0 {
        padding: 10px;
        align-items: flex-start;
    }
    
    /* Improve post cards */
    .bg-white.rounded-lg.shadow-sm.p-6 {
        padding: 1rem !important;
    }
    
    /* Improve navigation */
    .quick-nav {
        position: sticky;
        top: 0;
        z-index: 40;
    }
    
    /* Mobile Bottom Navigation */
    .mobile-bottom-nav {
        display: flex;
    }
    
    .profile-stats {
        gap: 15px;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .mobile-text-sm {
        font-size: 0.875rem !important;
    }
    
    .mobile-text-xs {
        font-size: 0.75rem !important;
    }
    
    .mobile-p-2 {
        padding: 0.5rem !important;
    }
    
    .mobile-p-3 {
        padding: 0.75rem !important;
    }
    
    /* Header logo and title */
    header .flex.items-center h1 {
        font-size: 1.5rem !important;
    }
    
    header .flex.items-center span {
        font-size: 0.75rem !important;
    }
    
    /* Buttons in header */
    header button {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.75rem !important;
    }
    
    /* Post actions */
    .flex.space-x-4.text-sm button {
        font-size: 0.75rem !important;
    }
    
    /* Modal content */
    .share-modal-content {
        width: 95% !important;
        margin: 0.5rem !important;
    }
    
    .share-options {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .share-option {
        min-width: 70px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet specific styles */
    .grid.grid-cols-1.lg\:grid-cols-4 {
        grid-template-columns: 1fr 2fr 1fr !important;
        gap: 1.5rem;
    }
    
    .tablet-hidden {
        display: none !important;
    }
    
    /* Adjust sidebar width */
    .lg\:col-span-1 {
        max-width: 250px;
    }
    
    /* Header adjustments for tablet */
    header .flex.justify-between {
        padding: 0 1rem;
    }
    
    /* Quick nav adjustments */
    .quick-nav-item {
        min-width: 90px;
    }
}

@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none;
    }
}

/* Touch-friendly improvements */
button, 
.clickable, 
[onclick] {
    min-height: 44px;
    min-width: 44px;
}

/* Improve form elements for touch */
input, 
textarea, 
select {
    font-size: 16px; /* Prevents zoom on iOS */
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Ensure crisp rendering */
    .red-bird-logo svg {
        shape-rendering: geometricPrecision;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* You can add dark mode styles here if needed */
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* User Profile Modal Styles */
.user-profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.user-profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 4px solid white;
    overflow: hidden;
    background: #f0f2f5;
}

.user-profile-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.user-profile-content {
    padding: 20px;
}

.user-profile-about {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.user-profile-posts {
    margin-top: 20px;
}

/* Add Users to Group Styles */
.selected-user-tag {
    background: #e7f3ff;
    border: 1px solid #b3d4fc;
    border-radius: 16px;
    padding: 4px 12px;
    margin: 2px;
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
}

.selected-user-tag button {
    background: none;
    border: none;
    margin-left: 6px;
    cursor: pointer;
    color: #666;
}

.selected-user-tag button:hover {
    color: #f44336;
}