/* Public Board View Styles - Dashboard-Style Layout */

/* Public header adaptations */
.header-container {
    background-color: var(--header-bg, #2d2d2d);
    border-bottom: 1px solid var(--border-color, #404040);
}

.board-title-container {
    flex: 1;
    text-align: center;
}

.board-title-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary, #ffffff);
}

.creator-info {
    font-size: 0.9rem;
    color: var(--text-muted, #888);
    margin-top: 0.25rem;
}

.creator-info a {
    color: var(--link-color, #4a9eff);
    text-decoration: none;
}

.engagement-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--badge-bg, rgba(255, 255, 255, 0.1));
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-muted, #888);
}

.header-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Board description banner */
.board-description-banner {
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1), rgba(29, 78, 216, 0.1));
    padding: 2rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color, #404040);
}

.description-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary, #ccc);
    white-space: pre-wrap; /* Preserve line breaks and whitespace */
}

/* Board list adaptations for public view */
.board-list-container {
    width: 250px; /* Match dashboard sidebar width */
}

.board-list-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color, #404040);
}

.board-list-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary, #ffffff);
}

.board-item {
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--text-primary, #ffffff);
    border-radius: 0;
    transition: background-color 0.2s ease;
}

.board-item:hover {
    background-color: var(--hover-bg, rgba(255, 255, 255, 0.05));
}

.board-item.selected {
    background-color: var(--selected-bg, rgba(74, 158, 255, 0.2));
    border-right: 3px solid var(--primary-color, #4a9eff);
}

.board-name {
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.board-stats {
    font-size: 0.8rem;
    color: var(--text-muted, #888);
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Public footer - translucent with frosted glass effect */
.public-footer {
    background: rgba(45, 45, 45, 0.15) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-top: auto; /* Push footer to bottom */
    padding: 3rem 0;
    width: 100%;
    opacity: 0; /* Hide initially to prevent flash before animation */
    transition: opacity 0.3s ease-in; /* Smooth fade-in transition */
}

.footer-content {
    text-align: center;
}

.footer-content h4 {
    color: var(--text-primary, #ffffff);
    margin-bottom: 1rem;
}

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .board-title-container {
        text-align: center;
        order: 1;
    }
    
    .header-left {
        order: 2;
        justify-content: center;
    }
    
    .header-right {
        order: 3;
        justify-content: center;
    }
    
    .engagement-stats,
    .header-buttons {
        justify-content: center;
    }
    
    .board-container {
        flex-direction: column;
    }
    
    .board-list-container {
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
    }
}

/* Public board content styles */
.board-header-public {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color, #404040);
    margin-bottom: 1rem;
}

.board-title-main {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary, #ffffff);
    text-align: center;
}

.columns-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0rem;
    min-height: 500px;
}

/* Column styles removed - using dashboard styles from columns.css */

/* Column header styles removed - using dashboard styles from columns.css */
/* Column title styles removed - using dashboard styles from columns.css */

.column-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-item.public-card {
    background-color: var(--card-bg, rgba(255, 255, 255, 0.08));
    border: 1px solid var(--border-color, #404040);
    border-radius: 6px;
    padding: 1rem;
    transition: all 0.2s ease;
}

.card-item.public-card:hover {
    background-color: var(--card-hover-bg, rgba(255, 255, 255, 0.12));
    border-color: var(--primary-color, #4a9eff);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.1);
}

.card-header {
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.2rem !important;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary, #ffffff);
}

.card-content {
    font-size: 1.2rem !important;
    line-height: 1.5;
    color: var(--text-secondary, #ccc);
}

/* Ensure all card text content uses dashboard font size */
.card .card-body,
.card .card-text,
.card .card-body p,
.card .card-body div {
    font-size: 1.2rem !important;
    line-height: 1.5 !important;
}

/* Ensure card titles and title text match dashboard size */
.card .title-text,
.card .card-title .title-text,
.card .card-title,
.card h5.card-title {
    font-size: 1.3rem !important;
    line-height: 1.5 !important;
}

/* Override any smaller font sizes in cards */
.card * {
    font-size: 1.2rem !important;
}

/* Colored card styles - match dashboard translucent styling from column-override.css */
.card.card-color-green {
    background-color: rgba(25, 135, 84, 0.35) !important;
    background: rgba(25, 135, 84, 0.35) !important;
    border-color: rgba(40, 255, 100, 0.8);
    box-shadow: 0 0 10px rgba(40, 255, 100, 0.5),
                0 0 24px rgba(40, 255, 100, 0.3);
}

.card.card-color-green::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: rgba(40, 255, 100, 1);
    box-shadow: 0 0 8px rgba(40, 255, 100, 0.8),
                0 0 16px rgba(40, 255, 100, 0.5);
    border-radius: 4px 0 0 4px;
}

.card.card-color-yellow {
    background-color: rgba(255, 193, 7, 0.35) !important;
    background: rgba(255, 193, 7, 0.35) !important;
    border-color: rgba(255, 233, 40, 0.8);
    box-shadow: 0 0 10px rgba(255, 233, 40, 0.5),
                0 0 24px rgba(255, 233, 40, 0.3);
}

.card.card-color-yellow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: rgba(255, 233, 40, 1);
    box-shadow: 0 0 8px rgba(255, 233, 40, 0.8),
                0 0 16px rgba(255, 233, 40, 0.5);
    border-radius: 4px 0 0 4px;
}

.card.card-color-red {
    background-color: rgba(220, 53, 69, 0.35) !important;
    background: rgba(220, 53, 69, 0.35) !important;
    border-color: rgba(255, 40, 80, 0.8);
    box-shadow: 0 0 10px rgba(255, 40, 80, 0.5),
                0 0 24px rgba(255, 40, 80, 0.3);
}

.card.card-color-red::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: rgba(255, 40, 80, 1);
    box-shadow: 0 0 8px rgba(255, 40, 80, 0.8),
                0 0 16px rgba(255, 40, 80, 0.5);
    border-radius: 4px 0 0 4px;
}

/* Visited status card styles */
.card.most-recently-visited {
    background-color: rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-left: 5px solid rgba(255, 255, 255, 1) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6) !important;
}

.card.previously-visited {
    background-color: rgba(200, 200, 200, 0.15) !important;
    background: rgba(200, 200, 200, 0.15) !important;
    border-left: 5px solid rgba(200, 200, 200, 0.8) !important;
    box-shadow: 0 0 8px rgba(200, 200, 200, 0.3) !important;
}

/* Hover effects for colored cards */
.card.card-color-green:hover {
    box-shadow: 0 0 1px rgba(40, 255, 100, 1),
                0 0 24px rgba(40, 255, 100, 0.6),
                0 0 32px rgba(40, 255, 100, 0.4) !important;
    background: rgba(15, 15, 15, 1) !important;
    background-color: rgba(15, 15, 15, 1) !important;
    transform: translateY(-1px);
    background-image: none !important;
}

.card.card-color-yellow:hover {
    box-shadow: 0 0 1px rgba(255, 233, 40, 1),
                0 0 24px rgba(255, 233, 40, 0.6),
                0 0 32px rgba(255, 233, 40, 0.4) !important;
    background: rgba(15, 15, 15, 1) !important;
    background-color: rgba(15, 15, 15, 1) !important;
    transform: translateY(-1px);
    background-image: none !important;
}

.card.card-color-red:hover {
    box-shadow: 0 0 1px rgba(255, 40, 80, 1),
                0 0 24px rgba(255, 40, 80, 0.6),
                0 0 32px rgba(255, 40, 80, 0.4) !important;
    background: rgba(15, 15, 15, 1) !important;
    background-color: rgba(15, 15, 15, 1) !important;
    transform: translateY(-1px);
    background-image: none !important;
}

/* Public chat styles */
.chat-container.public-chat {
    min-width: 350px;
    max-width: 400px;
    background-color: var(--chat-bg, rgba(255, 255, 255, 0.05));
    border: 1px solid var(--border-color, #404040);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: fit-content;
    max-height: 600px;
}

.chat-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color, #404040);
    background-color: var(--chat-header-bg, rgba(255, 255, 255, 0.02));
    border-radius: 8px 8px 0 0;
}

.chat-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary, #ffffff);
}

.chat-messages {
    padding: 1rem;
    flex: 1;
    overflow-y: auto;
    max-height: 400px;
}

.chat-message {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    line-height: 1.5;
}

.chat-message.assistant {
    background-color: var(--ai-message-bg, rgba(74, 158, 255, 0.1));
    border-left: 3px solid var(--primary-color, #4a9eff);
}

.chat-message.user {
    background-color: var(--user-message-bg, rgba(255, 255, 255, 0.05));
    border-left: 3px solid var(--text-muted, #888);
}

.message-content {
    color: var(--text-secondary, #ccc);
    font-size: 0.9rem;
}

.chat-notice {
    padding: 1rem;
    border-top: 1px solid var(--border-color, #404040);
    background-color: var(--notice-bg, rgba(74, 158, 255, 0.05));
    border-radius: 0 0 8px 8px;
    text-align: center;
}

/* Error message styles */
.error-message {
    padding: 2rem;
    text-align: center;
}

.error-message .alert {
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive adjustments for board content */
@media (max-width: 768px) {
    .columns-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .column {
        min-width: unset;
    }
    
    .board-container {
        flex-direction: column;
    }
    
    .chat-container.public-chat {
        min-width: unset;
        max-width: unset;
        margin-top: 2rem;
    }
}

/* Basic page structure */
body {
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Fix Sky mode background for shared boards - use viewport-sized pseudo-element approach */
html.theme-dark-sky-mode {
    --bg-image: linear-gradient(rgba(33, 37, 41, 0.4), rgba(33, 37, 41, 0.4)), url('/static/background_learner.jpg');
    --bg-color: transparent;
}

/* Create viewport-sized background using pseudo-element (prevents content-width stretching) */
html.theme-dark-sky-mode body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-image) !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    z-index: -1;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
}

/* Remove background from body to prevent conflicts */
html.theme-dark-sky-mode body {
    background: none !important;
}

/* Ensure content containers are transparent */
html.theme-dark-sky-mode .container-fluid,
html.theme-dark-sky-mode .board-container,
html.theme-dark-sky-mode .board-content-section {
    background: transparent !important;
    background-image: none !important;
}

/* Ensure content is visible */
.container-fluid {
    position: relative;
    z-index: 1;
    flex: 1; /* Take up available space, pushing footer down */
}

.header-container {
    position: relative;
    z-index: 2;
}

.board-container {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.board-content-section {
    flex: 1;
    min-height: 500px;
}

/* Make sure the board content is visible */
#currentBoard {
    min-height: 400px;
    position: relative;
}

/* Public header styles */
.public-header {
    background-color: #2d2d2d;
    border-bottom: 1px solid #404040;
    padding: 1rem 0;
}

.public-brand {
    display: flex;
    align-items: center;
}

.brand-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.board-info {
    flex: 1;
}

.board-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.creator-info {
    color: #888;
    font-size: 0.9rem;
}

.creator-info a {
    color: #4a9eff;
}

.public-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.engagement-stats {
    display: flex;
    gap: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Main content */
.public-main {
    padding: 2rem 0;
    min-height: 60vh;
}

.board-description {
    text-align: center;
    margin-bottom: 2rem;
}

.board-display {
    background-color: #2d2d2d;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.board-columns {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
}

/* Footer - translucent with frosted glass effect (duplicate rule for specificity) */
.public-footer {
    background: rgba(45, 45, 45, 0.15) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 3rem 0;
    margin-top: auto;
    opacity: 0; /* Hide initially to prevent flash before animation */
    transition: opacity 0.3s ease-in; /* Smooth fade-in transition */
}

.footer-content {
    text-align: center;
}

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Fix Sign In button styling to match Get Started Free button exactly */
.footer-actions .btn-outline-light.btn-lg,
.footer-actions .btn-outline-light {
    background-color: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.5rem !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 1.25rem !important;
    transition: all 0.15s ease-in-out !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.5 !important;
    min-height: 48px !important;
    vertical-align: middle !important;
}

.footer-actions .btn-outline-light.btn-lg:hover,
.footer-actions .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Ensure both buttons have the same dimensions */
.footer-actions .btn {
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Loading message */
.loading-message {
    text-align: center;
    padding: 3rem 2rem;
    color: #888;
}

.loading-message p {
    margin: 0.5rem 0;
}

/* Chat section */
.chat-section {
    margin-top: 3rem;
}

.chat-section .card {
    background-color: #2d2d2d;
    border: 1px solid #404040;
    color: #ffffff;
}

.chat-section .card-header {
    background-color: #3d3d3d;
    border-bottom: 1px solid #404040;
    color: #ffffff;
}

/* Use Bootstrap's standard modal backdrop approach */
.modal-backdrop.show {
    opacity: 0.75; /* Darker backdrop to match real chat modal */
}

/* Only darken backdrop further for the intro onboarding modal */
/* Ensure the darker opacity is applied immediately by tying it to body flag set before Bootstrap inserts backdrop */
body.intro-backdrop .modal-backdrop.show,
.modal-backdrop.backdrop-intro-dark.show {
    opacity: 0.95 !important;
}

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

.modal-dialog {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-content {
    padding: 0;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
}

.close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.close:hover {
    background: var(--bg-card-hover);
    color: var(--text-light);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body p {
    margin: 0 0 1.5rem 0;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-dark);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(74, 74, 255, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Board Content Styles */
.board-columns {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    min-height: 400px;
    overflow-x: auto;
}

.board-column {
    min-width: 300px;
    background: var(--bg-dark);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 1rem;
    flex-shrink: 0;
}

/* Duplicate column-header styles removed - using dashboard styles from columns.css */

.column-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.board-card-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem;
    transition: all 0.2s ease;
}

.board-card-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
}

.card-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Chat Display Styles */
.chat-section {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
}

.chat-header {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-messages {
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.message-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.message-text {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.message-text p {
    margin: 0 0 1rem 0;
}

.message-text p:last-child {
    margin-bottom: 0;
}

.chat-placeholder {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding: 2rem;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--accent-primary);
    animation: spin 1s ease-in-out infinite;
}

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

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .board-columns {
        flex-direction: column;
        padding: 1rem;
    }
    
    .board-column {
        min-width: auto;
    }
    
    .modal-dialog {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .btn,
    .board-card-item,
    .modal,
    .loading-spinner {
        transition: none;
        animation: none;
    }
    
    .loading-spinner {
        border-top-color: var(--accent-primary);
        animation: none;
    }
}


