* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Header */
.header {
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background-color: #1f2937;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.community-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    color: #1f2937;
    cursor: pointer;
}

.dropdown-arrow {
    color: #6b7280;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-item {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-item:hover {
    color: #1f2937;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px 12px 8px 36px;
    font-size: 14px;
    width: 240px;
    background-color: #f9fafb;
    outline: none;
    transition: border-color 0.2s, background-color 0.2s;
}

.search-input:focus {
    border-color: #3b82f6;
    background-color: white;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: #9ca3af;
    z-index: 1;
}

.icon-btn {
    background: none;
    border: none;
    padding: 8px;
    border-radius: 6px;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
}

.icon-btn:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Container */
.main-container {
    display: flex;
    margin-top: 64px;
    min-height: calc(100vh - 64px);
}

/* Thin Left Sidebar */
.thin-sidebar {
    width: 64px;
    background-color: white;
    border-right: 1px solid #e5e7eb;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: fixed;
    left: 0;
    top: 64px;
    height: calc(100vh - 64px);
    z-index: 999;
}

.thin-sidebar-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 8px;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.thin-sidebar-btn:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.sparkle-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.sparkle-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    color: white;
    transform: scale(1.05);
}

/* Main Sidebar */
.sidebar {
    width: 280px;
    background-color: white;
    border-right: 1px solid #e5e7eb;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: fixed;
    left: 64px;
    top: 64px;
    height: calc(100vh - 64px);
    overflow-y: auto;
}

.sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.sidebar-item:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.sidebar-item.active {
    color: #6b7280;
}

.sidebar-item.selected {
    background-color: #1f2937;
    color: white;
}

.close-icon {
    color: #9ca3af;
}

.section-title {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.create-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.create-btn:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.link-item:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.go-live-container {
    margin-top: auto;
    padding-top: 24px;
}

.go-live-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: none;
    border: 1px solid white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}


.powered-by {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 16px;
}

/* Main Content */
.main-content {
    margin-left: 344px; /* 64px (thin sidebar) + 280px (main sidebar) */
    flex: 1;
    padding: 24px 32px;
    max-width: 80vw;
}

/* Add these styles to your existing CSS */
.dashboard-container {
    max-width: 800px;
    margin: 0 auto;
}

.dashboard-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.welcome-card {
    background-color: #f8f9fa;
    border: none;
}

.dashboard-card h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.dashboard-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f2937;
}

.dashboard-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1f2937;
}

.dashboard-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.progress-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.primary-btn {
    background-color: #1f2937;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.primary-btn:hover {
    background-color: #374151;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.checklist-item input {
    width: 16px;
    height: 16px;
}

.checklist-item label {
    font-size: 14px;
    color: #1f2937;
    cursor: pointer;
}

.dashboard-section {
    margin-bottom: 24px;
}

.dashboard-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.action-card {
    margin-bottom: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.action-tag {
    display: inline-block;
    background-color: #f3f4f6;
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 8px;
}

.resources-link {
    text-align: center;
    color: #3b82f6;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    margin-top: 24px;
}

.resources-link:hover {
    text-decoration: underline;
}

/* Floating Buttons */
.floating-chat {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 56px;
    height: 56px;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 1000;
}

.floating-chat:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .thin-sidebar {
        width: 56px;
    }
    
    .sidebar {
        width: 240px;
        left: 56px;
    }
    
    .main-content {
        margin-left: 296px; /* 56px + 240px */
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .search-container {
        display: none;
    }
    
    .thin-sidebar,
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    
    .main-content {
        margin-left: 0;
        padding: 16px;
    }
}

/* Feed Grid Layout */
/* Enhanced Feed Grid Layout with better spacing */
.feed-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 32px;
}

/* Subtle Card Styles with pastel accents */
.feed-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    position: relative;
}

.feed-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #D1D5DB;
}

/* Main create post card - subtle pastel gradient */
.feed-card-wide {
    grid-column: span 2;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    border: 2px solid #e0e7ff;
    color: #1e293b;
}

.feed-card-wide:hover {
    border-color: #c7d2fe;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.08);
}

/* Action cards - hollow with pastel accents */
.feed-card-half {
    grid-column: span 1;
    background: white;
    border: 2px solid #fce7f3;
    position: relative;
}

.feed-card-half::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #f9a8d4;
    border-radius: 0 2px 2px 0;
}

.feed-card-half:first-of-type {
    border-color: #dbeafe;
}

.feed-card-half:first-of-type::before {
    background: #93c5fd;
}

.feed-card-half:hover {
    border-color: #f3e8ff;
    background: #fefbff;
}

.feed-card-half:first-of-type:hover {
    border-color: #bfdbfe;
    background: #f8faff;
}

/* Checklist card - subtle background */
.feed-card-wide .feed-card-title-lg {
    color: #1e293b;
}

.feed-card-wide .feed-card-description {
    color: #64748b;
}

/* Automation cards - minimal hollow style */
.feed-card-third {
    grid-column: span 1;
    background: white;
    border: 1px solid #f1f5f9;
    position: relative;
}

.feed-card-third:hover {
    border-color: #e2e8f0;
    background: #fafbfc;
}

/* Subtle accent bars for automation cards */
.feed-card-third:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #a5b4fc;
    border-radius: 0 2px 2px 0;
}

.feed-card-third:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #fda4af;
    border-radius: 0 2px 2px 0;
}

.feed-card-third:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #86efac;
    border-radius: 0 2px 2px 0;
}

/* Subtle Button Styles */
.feed-button-primary {
    background: #1e293b;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.feed-button-primary:hover {
    background: #334155;
    transform: translateY(-1px);
}

.feed-button-secondary {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.feed-button-secondary:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #475569;
}

/* Clean Typography */
.feed-card-title-lg {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.4;
}

.feed-card-title-sm {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.4;
}

.feed-card-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Checklist styling */
.feed-card-progress {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}

.feed-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.feed-checklist-item:last-child {
    border-bottom: none;
}

.feed-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #6366f1;
    cursor: pointer;
}

.feed-checklist-label {
    font-size: 14px;
    color: #374151;
    cursor: pointer;
}

/* Minimal Automation Cards */
.feed-automation-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.feed-automation-description {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    flex-grow: 1;
    line-height: 1.5;
}

.feed-automation-tag {
    font-size: 12px;
    color: #6b7280;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 4px 8px;
    border-radius: 12px;
    align-self: flex-start;
    font-weight: 500;
}

/* Clean Content Headers */
.content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    width: 10vw;
    margin-left: 10vw;
    padding: 0 8px;
}

.content-header h1 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

/* Subtle Controls */
.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sort-dropdown:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.sort-dropdown span {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.more-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-btn:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: #475569;
}

/* Clean Resources Link */
.feed-resources-text {
    color: #6366f1;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    background: #f0f4ff;
    border: 1px solid #e0e7ff;
    transition: all 0.2s ease;
    display: inline-block;
}

.feed-resources-text:hover {
    background: #e0e7ff;
    border-color: #c7d2fe;
    text-decoration: none;
}

/* Remove aggressive animations */
.feed-card-wide,
.feed-card-half {
    animation: none;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .feed-grid-layout {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
        padding: 0 16px;
    }
    
    .feed-card-wide,
    .feed-card-half,
    .feed-card-third {
        grid-column: span 1;
    }
    
    .content-header {
        width: 100%;
        margin-left: 0;
        padding: 0 16px;
        margin-bottom: 20px;
    }
    
    .content-header h1 {
        font-size: 20px;
    }
    
    .feed-card {
        padding: 20px;
    }
}

/* Survey Modal Styles */
.survey-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.survey-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.survey-modal-container {
    background-color: white;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.survey-modal-overlay.active .survey-modal-container {
    transform: translateY(0);
}

.survey-modal-header {
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.survey-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.survey-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.survey-modal-body {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(90vh - 120px);
}

.survey-input-group {
    margin-bottom: 20px;
}

.survey-input-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.survey-input-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.survey-recipient-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.survey-recipient-option {
    flex: 1;
}

.survey-recipient-btn {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

.survey-recipient-btn.active {
    background: black;
    color: white;
    border-color: black;
}

.survey-questions-container {
    margin-top: 30px;
}

.survey-question {
    background: #f9f9f9;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
}

.survey-question-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.survey-question-title {
    font-weight: 500;
}

.survey-question-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
}

.survey-question-type {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    background: white;
}

.survey-question-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.survey-option-input {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.survey-option-input input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.survey-option-remove {
    margin-left: 10px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
}

.survey-add-option {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    margin-top: 5px;
}

.survey-add-option svg {
    margin-right: 5px;
}

.survey-add-question {
    width: 100%;
    padding: 12px;
    background: white;
    border: 1px dashed #ddd;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.survey-add-question svg {
    margin-right: 8px;
}

.survey-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.survey-btn {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.survey-btn-secondary {
    background: white;
    border: 1px solid #ddd;
}

.survey-btn-primary {
    background: black;
    color: white;
    border: 1px solid black;
}

.notif-dropdown {
  font-family: inherit;
  height: 500px;
}

.notif-dropdown-header {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

.notif-dropdown-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  padding: 5px;
}

.notif-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 0 16px;
}

.notif-tab {
  padding: 12px 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: #666;
  border-bottom: 2px solid transparent;
  margin-right: 8px;
}

.notif-tab.active {
  color: #000;
  border-bottom-color: #3b82f6;
  font-weight: 500;
}

.notif-content {
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
}

.notif-empty-state p:first-child {
  font-weight: 500;
  margin-bottom: 8px;
}

.notif-course-status {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.comment-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.comment-modal-container {
  background-color: white;
  border-radius: 8px;
  width: 500px;
  max-width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.comment-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.comment-modal-title-group {
  flex: 1;
}

.comment-modal-title {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 600;
}

.comment-modal-subtitle {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.comment-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  margin-left: 20px;
}

.comment-modal-body {
  padding: 20px;
}

.comment-section {
  margin-bottom: 24px;
}

.comment-section-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #333;
}

.comment-item {
  margin-bottom: 16px;
}

.comment-item-title {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 8px 0;
  color: #444;
}

.comment-checkbox {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #444;
  cursor: pointer;
}

.comment-checkbox input {
  margin-right: 8px;
}

.comment-badge {
  display: inline-block;
  padding: 4px 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
  font-size: 13px;
  color: #333;
}

.comment-text {
  font-size: 14px;
  color: #666;
  margin: 8px 0;
}

.comment-status {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.comment-status-text {
  font-size: 13px;
  color: #666;
  margin: 4px 0;
}

.comment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    display: none;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 1000;
    pointer-events: none;
}

.comment-modal-container {
    background-color: white;
    border-radius: 8px;
    width: 350px;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    pointer-events: auto;
    margin-top: 50px;
    margin-right: 10px;
}

.span {
    color: grey;
    text-decoration: none;
}

.go {
    color: white;
    text-decoration: none;
}

.student-council-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.student-council-modal-container {
  background-color: white;
  border-radius: 12px;
  width: 500px;
  max-width: 90%;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.student-council-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
}

.student-council-modal-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.student-council-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.student-council-modal-body {
  padding: 20px;
}

.student-council-input-group {
  margin-bottom: 20px;
}

.student-council-input-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.student-council-input-field {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background-color: #f9f9f9;
}

.student-council-textarea {
  width: 100%;
  height: 150px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  resize: vertical;
}

.student-council-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid #eaeaea;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.student-council-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.student-council-btn-primary {
  background-color: #3b82f6;
  color: white;
  border: none;
}

.student-council-btn-primary:hover {
  background-color: #2563eb;
}

.student-council-btn-secondary {
  background-color: white;
  color: #333;
  border: 1px solid #ddd;
}

.student-council-btn-secondary:hover {
  background-color: #f5f5f5;
}

.featured-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.featured-modal-container {
  background-color: white;
  border-radius: 12px;
  width: 500px;
  max-width: 90%;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.featured-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
}

.featured-modal-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.featured-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.featured-modal-body {
  padding: 20px;
}

.featured-input-group {
  margin-bottom: 20px;
}

.featured-input-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.featured-input-field {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.featured-textarea {
  width: 100%;
  height: 120px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  resize: vertical;
}

.featured-checkbox-group {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.featured-checkbox {
  margin-right: 10px;
}

.featured-checkbox-label {
  font-size: 14px;
  color: #555;
}

.featured-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid #eaeaea;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.featured-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.featured-btn-primary {
  background-color: #3b82f6;
  color: white;
  border: none;
}

.featured-btn-primary:hover {
  background-color: #2563eb;
}

.featured-btn-secondary {
  background-color: white;
  color: #333;
  border: 1px solid #ddd;
}

.featured-btn-secondary:hover {
  background-color: #f5f5f5;
}

.content-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.content-modal-container {
  background-color: white;
  border-radius: 12px;
  width: 500px;
  max-width: 90%;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.content-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}

.content-modal-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.content-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.content-modal-body {
  padding: 20px;
}

.content-modal-section {
  margin-bottom: 20px;
}

.content-modal-subtitle {
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: 500;
  color: #444;
}

.content-modal-empty {
  text-align: center;
  color: #888;
  font-size: 14px;
  padding: 20px 0;
}

.content-modal-empty p:first-child {
  font-weight: 500;
  margin-bottom: 8px;
}

/* Thin Sidebar User Clubs */
.user-clubs-mini {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0;
}

.user-club-mini {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
}

.user-club-mini:hover {
    transform: scale(1.1);
}

.loading-clubs-mini {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-clubs-mini .spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#clubs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.survey-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.survey-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.survey-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.survey-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.close-survey-modal {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0.5rem;
}

.survey-question {
    margin-bottom: 1.5rem;
}

.survey-question label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.survey-slider {
    width: 100%;
    margin: 0.5rem 0;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6b7280;
}

.slider-value {
    font-weight: 600;
    color: #3b82f6;
}

.survey-question textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0.75rem;
    resize: vertical;
}

.survey-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.survey-notification-banner {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            color: white;
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #2563eb 100%);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(79, 70, 229, 0.3);
            z-index: 1000;
            padding: 1rem;
            animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
.survey-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.btn-small {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
}

.survey-creation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.survey-creation-content {
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.survey-creation-header {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.survey-creation-header h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #333;
}

.close-survey-creation {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.survey-creation-body {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
}

.survey-meta {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #444;
}

.form-group input,
.form-group textarea,
.question-text {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.survey-question {
  background: #f9f9f9;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #eee;
}

.question-header {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.question-header input {
  flex-grow: 1;
}

.question-type {
  width: 150px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
}

.remove-question {
  background: none;
  border: none;
  color: #ff4444;
  font-size: 1.2rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.question-options {
  padding: 10px 0;
}

.add-question-btn {
  width: 100%;
  padding: 10px;
  background: #f0f0f0;
  border: 1px dashed #ccc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  color: #555;
  font-weight: 500;
}

.add-question-btn:hover {
  background: #e9e9e9;
}

.survey-creation-footer {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.btn-primary, .btn-secondary {
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary {
  background: grey;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: black;
}

.btn-secondary {
  background: white;
  border: 1px solid #ddd;
  color: #555;
}

.btn-secondary:hover {
  background: #f5f5f5;
}

/* Add this to your CSS */
.question-options {
  margin-top: 10px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 6px;
}

/* For multiple choice/dropdown options */
.option-field {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.option-field input {
  flex: 1;
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.add-option-btn {
  background: #f0f0f0;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

/* For scale questions */
.scale-display {
  color: #666;
  font-size: 14px;
  padding: 8px 0;
}

/* Add this to your CSS */
.remove-option {
  background: none;
  border: none;
  color: #ff4444;
  font-size: 1.2rem;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.remove-option:hover {
  color: #cc0000;
  transform: scale(1.1);
}

/* Update the option field container */
.option-field {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.option-field input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Add this to your stylesheet */
.option-field button {
  background: #f5f5f5;
  border: 1px solid #ddd;
  color: #333;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 13px;
  cursor: pointer;
  margin-left: 8px;
  transition: all 0.2s;
}

.option-field button:hover {
  background: #e0e0e0;
}

/* For the remove buttons specifically */
.option-field .remove-option {
  background: #ffeeee;
  border-color: #ffaaaa;
  color: #ff4444;
}

.option-field .remove-option:hover {
  background: #ffdddd;
}


/* Add to your CSS */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.close-modal {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

.collab-request-wrapper {
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.request-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.header-icon {
    font-size: 24px;
    filter: grayscale(0.2);
}

.request-header h3 {
    margin: 0;
    color: #1f2937;
    font-weight: 600;
    font-size: 20px;
}

.clubs-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px 0;
    background: #f8fafc;
    border-radius: 12px;
}

.club-card {
    flex: 1;
    text-align: center;
    padding: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.club-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.club-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    word-break: break-word;
}

.to-club {
    border-left: 4px solid #3b82f6;
}

.from-club {
    border-left: 4px solid #10b981;
}

.arrow {
    font-size: 18px;
    color: #6b7280;
    font-weight: bold;
    flex-shrink: 0;
}

.request-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px solid #f3f4f6;
}

.detail-label {
    font-weight: 500;
    color: #374151;
    min-width: 80px;
    flex-shrink: 0;
}

.detail-value {
    color: #6b7280;
    text-align: right;
    flex: 1;
    margin-left: 12px;
    word-break: break-word;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .clubs-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .detail-value {
        text-align: left;
        margin-left: 0;
    }
}