/* _content/OcdWebsite.Site/Components/AiChatOverlay.razor.rz.scp.css */

.ai-chat-overlay[b-aiq95587ha] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Orbitron', monospace;
}

.chat-toggle[b-aiq95587ha] {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    border: none;
    position: relative;
    color: #00d4ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 0.5px;
    box-shadow:
            0 0 20px rgba(0, 212, 255, 0.4),
            0 0 40px rgba(255, 0, 110, 0.2),
            0 0 60px rgba(131, 56, 236, 0.1);
}

.chat-toggle[b-aiq95587ha]::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ff006e);
    border-radius: 50%;
    z-index: -1;
    animation: rotate-b-aiq95587ha 8s linear infinite;
}

.chat-toggle[b-aiq95587ha]::after {
    content: '';
    position: absolute;
    inset: 0px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    border-radius: 50%;
    z-index: 0;
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.chat-toggle:hover[b-aiq95587ha] {
    transform: scale(1.05) translateY(-2px);
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    box-shadow:
            0 0 30px rgba(0, 212, 255, 0.6),
            0 0 60px rgba(255, 0, 110, 0.4),
            0 0 90px rgba(131, 56, 236, 0.3),
            0 10px 30px rgba(0, 0, 0, 0.3);
}

.chat-toggle:hover[b-aiq95587ha]::after {
    opacity: 0;
}

.chat-toggle i[b-aiq95587ha],
.chat-toggle span[b-aiq95587ha] {
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 0 8px currentColor);
    transition: all 0.4s ease;
}

.chat-toggle i[b-aiq95587ha] {
    font-size: 22px;
    margin-bottom: 2px;
}

.chat-toggle span[b-aiq95587ha] {
    text-align: center;
    line-height: 1;
    font-size: 8px;
    letter-spacing: 0.3px;
}

/* Ensure expanded state icon is still visible */
.ai-chat-overlay.expanded .chat-toggle i[b-aiq95587ha] {
    z-index: 10;
    color: #00d4ff;
    filter: drop-shadow(0 0 12px currentColor);
    margin-bottom: 0;
}

.ai-chat-overlay.expanded .chat-toggle span[b-aiq95587ha] {
    font-size: 7px;
    margin-top: 2px;
}

.ai-chat-overlay.expanded .chat-toggle:hover i[b-aiq95587ha] {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
}

@keyframes rotate-b-aiq95587ha {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.chat-container[b-aiq95587ha] {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 420px;
    height: 550px;
    background: linear-gradient(145deg, #0f0f23 0%, #16213e 50%, #1a1a2e 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 30px rgba(0, 212, 255, 0.1);
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: 'Orbitron', monospace;
    overflow: hidden;
}

.ai-chat-overlay.expanded .chat-container[b-aiq95587ha] {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-header[b-aiq95587ha] {
    padding: 20px;
    background: linear-gradient(90deg, rgba(255, 0, 110, 0.1), rgba(0, 212, 255, 0.1));
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.chat-header[b-aiq95587ha]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.chat-header h4[b-aiq95587ha] {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #00d4ff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.close-button[b-aiq95587ha] {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid rgba(255, 0, 110, 0.3);
    color: #ff006e;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.close-button:hover[b-aiq95587ha] {
    background: rgba(255, 0, 110, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.4);
}

.chat-messages[b-aiq95587ha] {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-messages[b-aiq95587ha]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-aiq95587ha]::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.chat-messages[b-aiq95587ha]::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff006e, #00d4ff);
    border-radius: 3px;
}

.message[b-aiq95587ha] {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.message.user[b-aiq95587ha] {
    display: flex;
    justify-content: flex-end;
}

.message.user .message-content[b-aiq95587ha] {
    padding: 12px 16px;
    background: linear-gradient(135deg, #00d4ff, #0066cc);
    color: #0f0f23;
    border-radius: 18px 18px 6px 18px;
    max-width: 85%;
    font-weight: 600;
    box-shadow:
            0 4px 15px rgba(0, 212, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.message.ai[b-aiq95587ha] {
    display: flex;
    justify-content: flex-start;
}

.message.ai .message-content[b-aiq95587ha] {
    padding: 16px 20px;
    background: rgba(0, 196, 180, 0.08);
    color: #e0e6ed;
    border-radius: 18px 18px 18px 6px;
    max-width: 85%;
    border: 1px solid rgba(0, 196, 180, 0.25);
    backdrop-filter: blur(10px);
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 196, 180, 0.1);
}

.message-content[b-aiq95587ha] {
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ai-prompt[b-aiq95587ha] {
    color: #00c4b4;
    font-weight: 700;
    margin-right: 8px;
    font-size: 16px;
    text-shadow: 0 0 8px currentColor;
    font-family: 'Orbitron', monospace;
}

.message-time[b-aiq95587ha] {
    font-size: 9px;
    color: rgba(0, 196, 180, 0.4);
    margin-top: 12px;
    margin-left: 12px;
    font-family: 'Orbitron', monospace;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.7;
    text-transform: uppercase;
}

.message.user .message-time[b-aiq95587ha] {
    text-align: right;
    margin-left: 12px;
    margin-top: 12px;
    color: rgba(0, 212, 255, 0.5);
}


.message.ai.processing .message-content[b-aiq95587ha] {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    min-height: auto;
}

.typing-indicator[b-aiq95587ha] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 0;
    vertical-align: middle;
}

.typing-indicator span[b-aiq95587ha] {
    width: 6px;
    height: 6px;
    background: #00c4b4;
    border-radius: 50%;
    animation: synthPulse-b-aiq95587ha 1.6s infinite ease-in-out;
    box-shadow: 0 0 8px currentColor;
}

.typing-indicator span:nth-child(1)[b-aiq95587ha] { animation-delay: -0.4s; }
.typing-indicator span:nth-child(2)[b-aiq95587ha] { animation-delay: -0.2s; }
.typing-indicator span:nth-child(3)[b-aiq95587ha] { animation-delay: 0s; }

@keyframes synthPulse-b-aiq95587ha {
    0%, 80%, 100% {
        opacity: 0.4;
        transform: scale(0.8);
        box-shadow: 0 0 4px currentColor;
    }
    40% {
        opacity: 1;
        transform: scale(1.1);
        box-shadow: 0 0 12px currentColor;
    }
}

.chat-input[b-aiq95587ha] {
    padding: 20px;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.8), rgba(26, 26, 46, 0.8));
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.input-group[b-aiq95587ha] {
    display: flex;
    gap: 12px;
    align-items: center;
}

.terminal-input[b-aiq95587ha] {
    flex: 1;
    padding: 14px 18px;
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid rgba(0, 196, 180, 0.3);
    border-radius: 12px;
    color: #e0e6ed;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.terminal-input:focus[b-aiq95587ha] {
    border-color: #00c4b4;
    box-shadow:
            0 0 20px rgba(0, 196, 180, 0.3),
            inset 0 0 20px rgba(0, 196, 180, 0.05);
    background: rgba(15, 15, 35, 0.9);
}

.terminal-input[b-aiq95587ha]::placeholder {
    color: rgba(224, 230, 237, 0.4);
    font-style: italic;
}

.submit-btn[b-aiq95587ha] {
    padding: 14px 24px;
    background: linear-gradient(135deg, #00c4b4, #00a99d);
    border: none;
    border-radius: 12px;
    color: #0f0f23;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    min-width: 70px;
}

.submit-btn[b-aiq95587ha]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover:not(:disabled)[b-aiq95587ha] {
    background: linear-gradient(135deg, #00d4c4, #00b9ad);
    transform: translateY(-2px);
    box-shadow:
            0 8px 25px rgba(0, 196, 180, 0.4),
            0 0 30px rgba(0, 196, 180, 0.3);
}

.submit-btn:hover:not(:disabled)[b-aiq95587ha]::before {
    left: 100%;
}

.submit-btn:disabled[b-aiq95587ha] {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .chat-container[b-aiq95587ha] {
        width: 380px;
        height: 500px;
    }

    .chat-toggle[b-aiq95587ha] {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .chat-container[b-aiq95587ha] {
        width: 350px;
        right: -15px;
        height: 480px;
    }

    .chat-toggle[b-aiq95587ha] {
        width: 55px;
        height: 55px;
    }

    .chat-toggle i[b-aiq95587ha] {
        font-size: 18px;
    }
}
/* _content/OcdWebsite.Site/Components/Layout/Footer.razor.rz.scp.css */
.footer[b-u8bvg1rbjy] {
    width: 100%;
    text-align: center;
    color: #b3b3b3;
    font-size: 0.9rem;
    padding: 10px 0; /* Back to original */
    max-width: 1200px;
    flex-shrink: 0;
}

.social-links[b-u8bvg1rbjy] {
    margin-top: 0.5rem; /* Back to original */
}

.social-links a[b-u8bvg1rbjy] {
    display: inline-block;
    margin: 0 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Roboto', 'Arial', sans-serif;
    color: #e6e6e6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover[b-u8bvg1rbjy] {
    color: #00c4b4;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .social-links a[b-u8bvg1rbjy] {
        display: block;
        margin: 0.5rem 0;
        font-size: 1.1rem;
    }

    .footer[b-u8bvg1rbjy] {
        font-size: 0.8rem;
    }
}
/* _content/OcdWebsite.Site/Components/Layout/Header.razor.rz.scp.css */
.header[b-fjw2zu0aq3] {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 1rem; /* Back to original */
}

.top-row[b-fjw2zu0aq3] {
    background-color: transparent;
    justify-content: center;
    height: 3.5rem;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    color: #e6e6e6;
}

.top-row[b-fjw2zu0aq3]  a, .top-row[b-fjw2zu0aq3]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
    color: #e6e6e6;
}

.top-row[b-fjw2zu0aq3]  a:hover, .top-row[b-fjw2zu0aq3]  .btn-link:hover {
    color: #00c4b4;
    text-decoration: underline;
}

.top-row[b-fjw2zu0aq3]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .top-row[b-fjw2zu0aq3] {
        justify-content: space-between;
        padding-top: 0.5rem; /* Back to original */
    }

    .top-row[b-fjw2zu0aq3]  a, .top-row[b-fjw2zu0aq3]  .btn-link {
        margin-left: 0;
    }
}
/* _content/OcdWebsite.Site/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-f6gakkv96s] {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%; /* Ensure it spans the centered page-wrapper */
}

main[b-f6gakkv96s] {
    flex: 1;
}

.sidebar[b-f6gakkv96s] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-f6gakkv96s] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: center; /* Centered as requested */
    height: 3.5rem;
    display: flex;
    align-items: center;
    padding-top: 1rem; /* Add space above */
    width: 100%;
    max-width: 1200px; /* Optional: limit width for consistency */
    margin: 0 auto; /* Center within page */
}

.top-row[b-f6gakkv96s]  a, .top-row[b-f6gakkv96s]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-f6gakkv96s]  a:hover, .top-row[b-f6gakkv96s]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-f6gakkv96s]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Call-to-Action Buttons */
.cta-buttons[b-f6gakkv96s] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    text-align: center;
}

/* Footer */
.footer[b-f6gakkv96s] {
    width: 100%;
    text-align: center;
    color: #b3b3b3;
    font-size: 0.9rem;
    padding: 10px 0;
    max-width: 1200px; /* Optional: match top-row width */
    margin: 0 auto; /* Center within page */
}

.social-links[b-f6gakkv96s] {
    margin-top: 0.5rem;
}

.social-links a[b-f6gakkv96s] {
    display: inline-block;
    margin: 0 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Roboto', 'Arial', sans-serif;
    color: #e6e6e6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover[b-f6gakkv96s] {
    color: #00c4b4;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .top-row[b-f6gakkv96s] {
        justify-content: space-between;
        padding-top: 0.5rem;
    }

    .top-row[b-f6gakkv96s]  a, .top-row[b-f6gakkv96s]  .btn-link {
        margin-left: 0;
    }

    .cta-buttons[b-f6gakkv96s] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .social-links a[b-f6gakkv96s] {
        display: block;
        margin: 0.5rem 0;
        font-size: 1.1rem;
    }

    .footer[b-f6gakkv96s] {
        font-size: 0.8rem;
    }
}

@media (min-width: 641px) {
    .page[b-f6gakkv96s] {
        flex-direction: row;
    }

    .sidebar[b-f6gakkv96s] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-f6gakkv96s] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-f6gakkv96s]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-f6gakkv96s], article[b-f6gakkv96s] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* Blazor Error UI */
#blazor-error-ui[b-f6gakkv96s] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-f6gakkv96s] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/OcdWebsite.Site/Components/Pages/About.razor.rz.scp.css */
.about-content[b-xcbkxnqa5c] {
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontal centering */
    justify-content: center; /* Vertical centering of children */
    width: 100%;
    max-width: 800px; /* Cap width at 800px */
    padding: 0;
}

.about-title[b-xcbkxnqa5c] {
    font-size: 3rem;
    font-weight: 700;
    color: #e6e6e6;
    margin-bottom: 1.5rem;
}

.about-intro[b-xcbkxnqa5c] {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.timeline[b-xcbkxnqa5c] {
    text-align: left;
    margin: 0 auto 3rem;
    max-width: 700px; /* Keep timeline narrower than about-content */
}

.timeline-item[b-xcbkxnqa5c] {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.timeline-item[b-xcbkxnqa5c]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    background-color: #00c4b4;
    border-radius: 50%;
}

.timeline-item h3[b-xcbkxnqa5c] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e6e6e6;
    margin-bottom: 0.5rem;
}

.timeline-subtitle[b-xcbkxnqa5c] {
    font-size: 1.1rem;
    color: #b3b3b3;
    margin-bottom: 0.5rem;
}

.timeline-item p[b-xcbkxnqa5c] {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-title[b-xcbkxnqa5c] {
        font-size: 2.5rem;
    }

    .about-intro[b-xcbkxnqa5c] {
        font-size: 1rem;
        max-width: 90%;
    }

    .timeline-item h3[b-xcbkxnqa5c] {
        font-size: 1.3rem;
    }

    .timeline-subtitle[b-xcbkxnqa5c] {
        font-size: 1rem;
    }

    .timeline-item p[b-xcbkxnqa5c] {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-title[b-xcbkxnqa5c] {
        font-size: 2rem;
    }

    .about-intro[b-xcbkxnqa5c] {
        font-size: 0.9rem;
    }
}
/* _content/OcdWebsite.Site/Components/Pages/Blog.razor.rz.scp.css */
.blog-content[b-7osdo4m8o5] {
    /* Inherits from .section-content */
}

.blog-title[b-7osdo4m8o5] {
    font-size: 3rem;
    font-weight: 700;
    color: #e6e6e6;
    margin-bottom: 1.5rem;
}

.blog-intro[b-7osdo4m8o5] {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.filter-button[b-7osdo4m8o5] {
    margin-bottom: 2rem;
}

.blog-posts[b-7osdo4m8o5] {
    margin: 0 auto 3rem;
    max-width: 700px;
}

.post-preview[b-7osdo4m8o5], .post-placeholder[b-7osdo4m8o5] {
    text-align: left;
    padding: 1rem;
    border-left: 3px solid #00c4b4;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-preview:hover[b-7osdo4m8o5] {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 196, 180, 0.3);
}

.post-thumbnail[b-7osdo4m8o5] {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.post-details[b-7osdo4m8o5] {
    flex: 1;
}

.post-preview h3[b-7osdo4m8o5], .post-placeholder h3[b-7osdo4m8o5] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e6e6e6;
    margin-bottom: 0.5rem;
}

.post-preview h3 a[b-7osdo4m8o5] {
    color: #e6e6e6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-preview h3 a:hover[b-7osdo4m8o5] {
    color: #00c4b4;
}

.post-preview p[b-7osdo4m8o5], .post-placeholder p[b-7osdo4m8o5] {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
}

.modal-overlay[b-7osdo4m8o5] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content[b-7osdo4m8o5] {
    background: #2a2a3e;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    color: #ffffff;
}

.modal-content h2[b-7osdo4m8o5] {
    font-size: 1.8rem;
    color: #e6e6e6;
    margin-bottom: 1.5rem;
}

.filter-form[b-7osdo4m8o5] {
    margin-bottom: 1.5rem;
}

.filter-form label[b-7osdo4m8o5] {
    display: block;
    font-size: 1rem;
    color: #e6e6e6;
    margin-bottom: 0.5rem;
}

.filter-form input[b-7osdo4m8o5] {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #00c4b4;
    border-radius: 5px;
    background: #1a1a2e;
    color: #cccccc;
    margin-bottom: 1rem;
}

.filter-form h3[b-7osdo4m8o5] {
    font-size: 1.5rem;
    color: #e6e6e6;
    margin-bottom: 0.5rem;
}

.category-checkboxes[b-7osdo4m8o5] {
    max-height: 200px;
    overflow-y: auto;
}

.category-checkbox[b-7osdo4m8o5] {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #cccccc;
}

.category-checkbox input[b-7osdo4m8o5] {
    margin-right: 0.5rem;
}

.modal-buttons[b-7osdo4m8o5] {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-title[b-7osdo4m8o5] {
        font-size: 2.5rem;
    }

    .blog-intro[b-7osdo4m8o5] {
        font-size: 1rem;
        max-width: 90%;
    }

    .post-preview h3[b-7osdo4m8o5], .post-placeholder h3[b-7osdo4m8o5] {
        font-size: 1.3rem;
    }

    .post-preview p[b-7osdo4m8o5], .post-placeholder p[b-7osdo4m8o5] {
        font-size: 0.9rem;
    }

    .post-thumbnail[b-7osdo4m8o5] {
        width: 40px;
        height: 40px;
    }

    .modal-content[b-7osdo4m8o5] {
        padding: 1.5rem;
    }

    .modal-content h2[b-7osdo4m8o5] {
        font-size: 1.5rem;
    }

    .filter-form h3[b-7osdo4m8o5] {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .blog-title[b-7osdo4m8o5] {
        font-size: 2rem;
    }

    .blog-intro[b-7osdo4m8o5] {
        font-size: 0.9rem;
    }

    .post-thumbnail[b-7osdo4m8o5] {
        width: 30px;
        height: 30px;
    }

    .modal-content[b-7osdo4m8o5] {
        width: 95%;
        padding: 1rem;
    }
}
/* _content/OcdWebsite.Site/Components/Pages/BlogPost.razor.rz.scp.css */
.blog-post-content[b-a3i26mii5m] {
    /* Inherits from .section-content */
}

.hero-image[b-a3i26mii5m] {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-placeholder[b-a3i26mii5m] {
    width: 100%;
    height: 300px;
    background-color: #2a2a3e;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.blog-post-title[b-a3i26mii5m] {
    font-size: 3rem;
    font-weight: 700;
    color: #e6e6e6;
    margin-bottom: 1.5rem;
}

.blog-post-intro[b-a3i26mii5m] {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.post-content[b-a3i26mii5m] {
    text-align: left;
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.post-extras[b-a3i26mii5m] {
    text-align: left;
    margin-bottom: 2rem;
}

.post-extras h3[b-a3i26mii5m] {
    font-size: 1.5rem;
    color: #e6e6e6;
    margin-bottom: 1rem;
}

.comment-list[b-a3i26mii5m] {
    margin-bottom: 1rem;
}

.comment[b-a3i26mii5m] {
    background-color: #2a2a3e;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.comment-author[b-a3i26mii5m] {
    font-size: 1rem;
    color: #e6e6e6;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.comment-text[b-a3i26mii5m] {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
}

.comment-placeholder[b-a3i26mii5m] {
    font-size: 1rem;
    color: #b3b3b3;
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-image[b-a3i26mii5m], .hero-placeholder[b-a3i26mii5m] {
        height: 200px;
    }

    .blog-post-title[b-a3i26mii5m] {
        font-size: 2.5rem;
    }

    .blog-post-intro[b-a3i26mii5m] {
        font-size: 1rem;
        max-width: 90%;
    }

    .post-content[b-a3i26mii5m] {
        font-size: 0.9rem;
    }

    .post-extras h3[b-a3i26mii5m] {
        font-size: 1.3rem;
    }

    .comment-author[b-a3i26mii5m] {
        font-size: 0.9rem;
    }

    .comment-text[b-a3i26mii5m] {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .blog-post-title[b-a3i26mii5m] {
        font-size: 2rem;
    }

    .blog-post-intro[b-a3i26mii5m] {
        font-size: 0.9rem;
    }

    .hero-image[b-a3i26mii5m], .hero-placeholder[b-a3i26mii5m] {
        height: 150px;
    }
}
/* _content/OcdWebsite.Site/Components/Pages/Home.razor.rz.scp.css */
.home-content[b-d9rk08d4re] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
}

.home-title[b-d9rk08d4re] {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    color: #e6e6e6;
}

.home-title:focus[b-d9rk08d4re] {
    outline: none;
    box-shadow: none;
}

.home-subtitle[b-d9rk08d4re] {
    font-size: 1.8rem;
    font-weight: 400;
    color: #b3b3b3;
    margin-bottom: 0.75rem;
}

.home-tagline[b-d9rk08d4re] {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.expertise-list[b-d9rk08d4re] {
    display: flex;
    flex-wrap: nowrap; /* Changed from wrap to nowrap for even sizing */
    justify-content: space-between; /* Evenly spaces items */
    align-items: center;
    max-width: 800px; /* Fixed width to match tagline */
    width: 100%; /* Ensures it scales within parent */
    margin: 1.5rem 0;
    font-size: 1.1rem;
    color: #00c4b4;
    text-align: center;
}

.expertise-item[b-d9rk08d4re] {
    flex: 1; /* Each item takes equal space */
    padding: 0 0.5rem; /* Reduced padding for tighter control */
    min-width: 0; /* Prevents overflow issues with long text */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .home-title[b-d9rk08d4re] {
        font-size: 2.5rem;
    }

    .home-subtitle[b-d9rk08d4re] {
        font-size: 1.4rem;
    }

    .home-tagline[b-d9rk08d4re] {
        font-size: 1rem;
        max-width: 90%;
    }

    .expertise-list[b-d9rk08d4re] {
        max-width: 90%; /* Scales with tagline */
        flex-wrap: wrap; /* Wraps on smaller screens */
        gap: 0.75rem;
        font-size: 1rem;
    }

    .expertise-item[b-d9rk08d4re] {
        flex: 0 0 calc(50% - 0.75rem); /* Two per row, accounting for gap */
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .home-title[b-d9rk08d4re] {
        font-size: 2rem;
    }

    .home-subtitle[b-d9rk08d4re] {
        font-size: 1.2rem;
    }

    .home-tagline[b-d9rk08d4re] {
        font-size: 0.9rem;
    }

    .expertise-list[b-d9rk08d4re] {
        flex-direction: column; /* Stack vertically */
        gap: 0.75rem;
        max-width: 100%;
    }

    .expertise-item[b-d9rk08d4re] {
        flex: 0 0 auto; /* Back to auto for single column */
        padding: 0;
    }
}
