@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.olwso25aue.bundle.scp.css';
@import '_content/FreemaBlazorDevTools/FreemaBlazorDevTools.3q51rnanw4.bundle.scp.css';
@import '_content/Satellite.Core/Satellite.Core.0sy2s2c9tx.bundle.scp.css';

/* /Components/Components/RssFeeds/LinkedInPosts.razor.rz.scp.css */
.linkedin-posts-container[b-rmozxeh75j] {
    width: 100%;
}

.loading-indicator[b-rmozxeh75j] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
}

.loading-text[b-rmozxeh75j] {
    color: #6c757d;
    font-size: 0.9rem;
}

.loading-spinner[b-rmozxeh75j] {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0a66c2;
    border-radius: 50%;
    animation: spin-b-rmozxeh75j 1s linear infinite;
}

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

.linkedin-title[b-rmozxeh75j] {
    display: flex;
    align-items: center;
    color: var(--freematica-primary-red-100);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
    font-size: 1.25rem;
}

.posts-list[b-rmozxeh75j] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 5px;
    padding-bottom: 5px;
}

.linkedin-post-card[b-rmozxeh75j] {
    padding: 0;
    border-left: 3px solid var(--freematica-primary-red-100);
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    height: 175px;
    min-height: 175px;
}

    .linkedin-post-card:has(.post-content.no-image)[b-rmozxeh75j] {
        height: auto;
        min-height: 120px;
    }

    .linkedin-post-card:hover[b-rmozxeh75j] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.post-content[b-rmozxeh75j] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

    .post-content.no-image[b-rmozxeh75j] {
        padding: 1.5rem;
    }

.post-image[b-rmozxeh75j] {
    flex-shrink: 0;
    min-width: 125px;
    width: 250px;
    max-width: 250px;
    height: 140px;
    overflow: hidden;
    border-radius: 8px;
    margin: 1rem 0 1rem 1rem;
}

    .post-image img[b-rmozxeh75j] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

.post-text[b-rmozxeh75j] {
    flex: 1;
    padding: 1rem 1rem 1rem 0;
    min-width: 0; /* Allow text to shrink */
}

.post-content.no-image .post-text[b-rmozxeh75j] {
    padding: 0;
    width: 100%;
}

.post-header[b-rmozxeh75j] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 0.75rem;
    min-height: fit-content;
}

.post-title[b-rmozxeh75j] {
    flex: 1;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 1.5em;
}

.post-date[b-rmozxeh75j] {
    color: #6c757d;
    font-size: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 0.1rem;
}

.post-description[b-rmozxeh75j] {
    color: #495057;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 6em;
}

    .post-description :global(p)[b-rmozxeh75j] {
        margin: 0;
        display: inline;
    }

    .post-description :global(p:not(:last-child))[b-rmozxeh75j] {
        margin-right: 0.5rem;
    }

.post-footer[b-rmozxeh75j] {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.5rem;
    border-top: 1px solid #e9ecef;
}

.error-message[b-rmozxeh75j], .no-posts-message[b-rmozxeh75j] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.error-message[b-rmozxeh75j] {
    color: #dc3545;
}

@media (max-width: 768px) {
    .post-content[b-rmozxeh75j] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .post-image[b-rmozxeh75j] {
        min-width: unset;
        width: 100%;
        max-width: 100%;
        height: 180px;
        margin: 1rem 1rem 0 1rem;
    }

    .post-text[b-rmozxeh75j] {
        padding: 0 1rem 1rem 1rem;
    }

    .post-content.no-image[b-rmozxeh75j] {
        padding: 1rem;
    }

        .post-content.no-image .post-text[b-rmozxeh75j] {
            padding: 0;
        }

    .post-header[b-rmozxeh75j] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .post-date[b-rmozxeh75j] {
        white-space: normal;
    }
}
/* /Components/Layout/Header/SHeader.razor.rz.scp.css */
.notifications-panel[b-qm1sk498am] {
    position: absolute;
    top: 100%; /* Ubica el panel justo debajo del RadzenMenuItem */
    right: 1%;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: var(--freematica-app-border-radius);
    width: 250px;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.no-notifications[b-qm1sk498am] {
    display: flex;
    align-items: center;
    color: #999;
    font-style: italic;
}

.icon-menu-item .rz-navigation-item-icon[b-qm1sk498am] {
    margin: 0 !important;
}

/* Custom scrollbar */
.header [b-qm1sk498am]::-webkit-scrollbar {
    width: var(--freematica-scrollbar-width);
}

.header [b-qm1sk498am]::-webkit-scrollbar-track {
    background: var(--freematica-scrollbar-dark-track-background);
}

.header [b-qm1sk498am]::-webkit-scrollbar-thumb {
    background-color: var(--freematica-scrollbar-dark-thumb-background);
    border-radius: var(--freematica-scrollbar-thumb-border-radius);
}

.header [b-qm1sk498am]::-webkit-scrollbar-thumb:hover {
    background-color: var(--freematica-scrollbar-dark-thumb-hover-background);
}
/* /Components/Layout/Sidebar/FavoritesBar.razor.rz.scp.css */
.sidebar-backdrop[b-8gik6q12dv] {
    position: fixed;
    top: 0;
    left: 16rem;
    width: 100vw;
    height: 100vh;
    z-index: 30;
}


.sidebar[b-8gik6q12dv] {
    box-shadow: 4px 0 12px -4px rgba(0, 0, 0, 0.1);
    z-index: 40;
}

.favorites-bar-sidebar[b-8gik6q12dv] {
    left: 0rem;
    transition: left 0.3s ease-in-out;
}

.favorites-bar-sidebar.slide-in[b-8gik6q12dv] {
    left: 18rem;
}

.sidebar .group-separator[b-8gik6q12dv] {
    position: relative;
    margin: 1.5rem 0 1rem;
    height: 1px;
    background: linear-gradient(270deg,
    rgba(209, 213, 219, 0.5) 0%,
    rgba(209, 213, 219, 0.4) 60%,
    rgba(209, 213, 219, 0) 100%);
}

/* Custom scrollbar */
.sidebar[b-8gik6q12dv]::-webkit-scrollbar {
    width: var(--freematica-scrollbar-width);
}

.sidebar[b-8gik6q12dv]::-webkit-scrollbar-track {
    background: var(--freematica-scrollbar-dark-track-background);
}

.sidebar[b-8gik6q12dv]::-webkit-scrollbar-thumb {
    background-color: var(--freematica-scrollbar-dark-thumb-background);
    border-radius: var(--freematica-scrollbar-thumb-border-radius);
}

.sidebar[b-8gik6q12dv]::-webkit-scrollbar-thumb:hover {
    background-color: var(--freematica-scrollbar-dark-thumb-hover-background);
}

.nav-margin-top[b-8gik6q12dv] {
    margin-top: 1rem !important;
}
/* /Components/Pages/Auth/LoginSuccessRedirect.razor.rz.scp.css */
.login-redirect-container[b-6qc027aq9v] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('images/newloginbackground.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.login-redirect-card[b-6qc027aq9v] {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 450px;
    width: 90%;
    padding: 3rem 2rem;
    animation: cardSlideUp-b-6qc027aq9v 0.3s ease-out;
}

.login-redirect-content[b-6qc027aq9v] {
    text-align: center;
}

/* Logo Container */
.logo-container[b-6qc027aq9v] {
    margin-bottom: 3rem;
}

.logo-animation[b-6qc027aq9v] {
    position: relative;
    display: inline-block;
}

.logo-circle[b-6qc027aq9v] {
    width: 80px;
    height: 80px;
    border: 4px solid #000000;
    border-radius: 50%;
    position: relative;
    margin: 0 auto 1rem;
    background: var(--rz-white);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseCircle-b-6qc027aq9v 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.check-icon[b-6qc027aq9v] {
    width: 32px;
    height: 32px;
    color: #000000;
    animation: checkPulse-b-6qc027aq9v 2s ease-in-out infinite;
}

.check-icon svg[b-6qc027aq9v] {
    width: 100%;
    height: 100%;
    animation: checkDraw-b-6qc027aq9v 3s ease-in-out infinite;
}

.logo-text[b-6qc027aq9v] {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
    margin-top: 1rem;
    animation: slideUpFade-b-6qc027aq9v 1s ease-out;
}

/* Loading Section */
.loading-section[b-6qc027aq9v] {
    margin-bottom: 2rem;
}

.loading-spinner[b-6qc027aq9v] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    height: 80px;
}

.spinner-ring-large[b-6qc027aq9v] {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 0, 0, 0.2);
    border-top: 4px solid #000000;
    border-radius: 50%;
    animation: spinPulse-b-6qc027aq9v 1.5s ease-in-out infinite;
}

.loading-text h3[b-6qc027aq9v] {
    color: #000000;
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.loading-text p[b-6qc027aq9v] {
    color: #6c757d;
    margin: 0;
    font-size: 1rem;
    animation: fadeText-b-6qc027aq9v 0.5s ease-in-out;
}

/* Progress Bar */
.progress-bar[b-6qc027aq9v] {
    width: 100%;
    height: 6px;
    background-color: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-fill[b-6qc027aq9v] {
    height: 100%;
    background: linear-gradient(90deg, #000000 0%, #333333 50%, #000000 100%);
    border-radius: 3px;
    transition: width 0.2s ease;
    animation: progressShimmer-b-6qc027aq9v 2s ease-in-out infinite;
}

/* Animations */
@keyframes checkPulse-b-6qc027aq9v {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes checkDraw-b-6qc027aq9v {
    0% {
        stroke-dasharray: 0 100;
        opacity: 0.7;
    }
    50% {
        stroke-dasharray: 100 0;
        opacity: 1;
    }
    100% {
        stroke-dasharray: 0 100;
        opacity: 0.7;
    }
}

@keyframes cardSlideUp-b-6qc027aq9v {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulseCircle-b-6qc027aq9v {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(0, 0, 0, 0);
    }
}

@keyframes slideUpFade-b-6qc027aq9v {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spinPulse-b-6qc027aq9v {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 1;
    }
}

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

@keyframes fadeText-b-6qc027aq9v {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes progressShimmer-b-6qc027aq9v {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-redirect-container[b-6qc027aq9v] {
        background-position: left center;
        background-size: auto;
    }
    
    .login-redirect-card[b-6qc027aq9v] {
        padding: 2rem 1.5rem;
        max-width: 350px;
        width: 85%;
        border-radius: 16px;
    }
    
    .logo-circle[b-6qc027aq9v] {
        width: 60px;
        height: 60px;
    }
    
    .check-icon[b-6qc027aq9v] {
        width: 24px;
        height: 24px;
    }
    
    .logo-text[b-6qc027aq9v] {
        font-size: 1.5rem;
    }
    
    .loading-text h3[b-6qc027aq9v] {
        font-size: 1.25rem;
    }
    
    .spinner-ring-large[b-6qc027aq9v] {
        width: 45px;
        height: 45px;
        border-width: 3px;
    }
    
    .loading-spinner[b-6qc027aq9v] {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .login-redirect-card[b-6qc027aq9v] {
        padding: 1.5rem 1rem;
        max-width: 320px;
        width: 90%;
        border-radius: 12px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .login-redirect-card[b-6qc027aq9v] {
        animation: none;
    }
    
    .logo-circle[b-6qc027aq9v],
    .check-icon[b-6qc027aq9v],
    .check-icon svg[b-6qc027aq9v],
    .spinner-ring-large[b-6qc027aq9v],
    .progress-fill[b-6qc027aq9v] {
        animation: none;
    }
    
    .logo-text[b-6qc027aq9v] {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
/* /Components/Pages/Auth/OAuthSuccess.razor.rz.scp.css */
.oauth-container[b-ybuer6z3zj] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem;
}

.oauth-card[b-ybuer6z3zj] {
    max-width: 500px;
    width: 100%;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.status-content[b-ybuer6z3zj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.status-icon[b-ybuer6z3zj] {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.success-icon[b-ybuer6z3zj] {
    color: #10b981;
    animation: bounce-b-ybuer6z3zj 1s ease-in-out;
}

.error-icon[b-ybuer6z3zj] {
    color: #ef4444;
}

.loading-icon[b-ybuer6z3zj] {
    color: #6b7280;
    animation: spin-b-ybuer6z3zj 2s linear infinite;
}

.status-title[b-ybuer6z3zj] {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.success-title[b-ybuer6z3zj] {
    color: #10b981;
}

.error-title[b-ybuer6z3zj] {
    color: #ef4444;
}

.status-description[b-ybuer6z3zj] {
    color: #6b7280;
    text-align: center;
    margin-bottom: 1rem;
}

.countdown-card[b-ybuer6z3zj] {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 1rem;
    margin: 0.5rem 0 1.5rem 0;
    width: 100%;
    text-align: center;
}

.countdown-text[b-ybuer6z3zj] {
    margin: 0;
    font-weight: 500;
    color: var(--bs-body-color);
}

.countdown-seconds[b-ybuer6z3zj] {
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.2rem;
}

.close-button[b-ybuer6z3zj] {
    margin-top: 1rem;
    min-width: 150px;
}

.manual-instructions[b-ybuer6z3zj] {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.instructions-text[b-ybuer6z3zj] {
    color: #6b7280;
    margin: 0;
}

@keyframes bounce-b-ybuer6z3zj {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -10px, 0);
    }
    70% {
        transform: translate3d(0, -5px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

@keyframes spin-b-ybuer6z3zj {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Cancelled state styles */
.cancel-icon[b-ybuer6z3zj] {
    color: #f59e0b;
    animation: shake-b-ybuer6z3zj 0.5s ease-in-out;
}

.cancel-title[b-ybuer6z3zj] {
    color: #f59e0b;
}

.cancel-details-card[b-ybuer6z3zj] {
    background: #fffbf3;
    border: 1px solid #ffe0b3;
    padding: 1rem;
    margin: 1rem 0;
    width: 100%;
    text-align: left;
}

.error-details[b-ybuer6z3zj] {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

@keyframes shake-b-ybuer6z3zj {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-2px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(2px);
    }
}
/* /Components/Pages/MenuForms.razor.rz.scp.css */
.sidebar-backdrop[b-r1dnnoow8a] {
    position: fixed;
    top: 0;
    left: 16rem;
    width: 100vw;
    height: 100vh;
    z-index: 30;
}


.sidebar[b-r1dnnoow8a] {
    box-shadow: 4px 0 12px -4px rgba(0, 0, 0, 0.1);
    z-index: 40;
}

.sidebar .group-separator[b-r1dnnoow8a] {
    position: relative;
    margin: 1.5rem 0 1rem;
    height: 1px;
    background: linear-gradient(270deg,
    rgba(209, 213, 219, 0.5) 0%,
    rgba(209, 213, 219, 0.4) 60%,
    rgba(209, 213, 219, 0) 100%);
}

/* Custom scrollbar */
.sidebar[b-r1dnnoow8a]::-webkit-scrollbar {
    width: var(--freematica-scrollbar-width);
}

.sidebar[b-r1dnnoow8a]::-webkit-scrollbar-track {
    background: var(--freematica-scrollbar-light-track-background);
}

.sidebar[b-r1dnnoow8a]::-webkit-scrollbar-thumb {
    background-color: var(--freematica-scrollbar-light-thumb-background);
    border-radius: var(--freematica-scrollbar-thumb-border-radius);
}

.sidebar[b-r1dnnoow8a]::-webkit-scrollbar-thumb:hover {
    background-color: var(--freematica-scrollbar-light-thumb-hover-background);
}

.nav-margin-top[b-r1dnnoow8a] {
    margin-top: 1rem !important;
}

.menu-forms-sidebar[b-r1dnnoow8a] {
    left: 0rem;
    transition: left 0.3s ease-in-out;
}

.menu-forms-sidebar.slide-in[b-r1dnnoow8a] {
    left: 18rem;
}
/* /Components/Pages/Testing/TestingPage.razor.rz.scp.css */
.testfoonotexist[b-w5pljva4kw] {
    color: red;
}
/* /Components/Pages/Testing/TestingPage1.razor.rz.scp.css */
.testfoonotexist[b-yifa6ha2gv] {
    color: red;
}
/* /Components/Pages/Testing/TestingPage2.razor.rz.scp.css */
.testfoonotexist[b-d7ygafbzx0] {
    color: red;
}
/* /Components/Pages/Testing/TestingPage2fixed.razor.rz.scp.css */
.testfoonotexist[b-kp0j7o78wm] {
    color: red;
}
