/* _content/CursosIglesia/Components/Layout/MainLayout.razor.rz.scp.css */
/* Layout scoped styles */

#blazor-error-ui[b-nawu6gxu5t] {
    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-nawu6gxu5t] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/CursosIglesia/Components/Shared/DailyVerseCard.razor.rz.scp.css */
.verse-container[b-8u7pnx4jm5] {
    position: fixed;
    top: 120px;
    right: 2rem;
    width: 380px;
    z-index: 100;
    pointer-events: auto;
}

.verse-card[b-8u7pnx4jm5] {
    background: linear-gradient(135deg, #D2B48C 0%, #BC9A6A 100%);
    border-left: 6px solid #8B4513;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(139, 69, 19, 0.25);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.verse-card[b-8u7pnx4jm5]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.verse-header[b-8u7pnx4jm5] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.verse-icon[b-8u7pnx4jm5] {
    font-size: 1.8rem;
    animation: gentle-float-b-8u7pnx4jm5 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes gentle-float-b-8u7pnx4jm5 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.verse-title[b-8u7pnx4jm5] {
    color: #5C4033;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.verse-content[b-8u7pnx4jm5] {
    position: relative;
    z-index: 1;
}

.verse-text[b-8u7pnx4jm5] {
    font-size: 1.2rem;
    font-style: italic;
    color: #3E2723;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.verse-reference[b-8u7pnx4jm5] {
    font-size: 0.95rem;
    color: #8B4513;
    font-weight: 700;
    margin: 0 0 0.6rem 0;
    display: block;
    text-align: right;
}

.verse-theme[b-8u7pnx4jm5] {
    font-size: 0.8rem;
    color: #6D4C41;
    margin: 0;
    font-weight: 500;
    margin-top: 0.4rem;
}

.verse-footer[b-8u7pnx4jm5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 69, 19, 0.25);
    position: relative;
    z-index: 1;
}

.verse-date[b-8u7pnx4jm5] {
    font-size: 0.75rem;
    color: #6D4C41;
    margin: 0;
    font-style: italic;
}

.fade-in[b-8u7pnx4jm5] {
    animation: fadeIn-b-8u7pnx4jm5 0.8s ease-out;
}

@keyframes fadeIn-b-8u7pnx4jm5 {
    from {
        opacity: 0;
        transform: translateY(20px) translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

.loading-placeholder[b-8u7pnx4jm5] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 160px;
}

.spinner[b-8u7pnx4jm5] {
    width: 35px;
    height: 35px;
    border: 3px solid rgba(139, 69, 19, 0.2);
    border-top: 3px solid #8B4513;
    border-radius: 50%;
    animation: spin-b-8u7pnx4jm5 0.8s linear infinite;
}

@keyframes spin-b-8u7pnx4jm5 {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .verse-container[b-8u7pnx4jm5] {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-bottom: 2rem;
    }

    .verse-card[b-8u7pnx4jm5] {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .verse-container[b-8u7pnx4jm5] {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin: 0 1rem 2rem 1rem;
    }

    .verse-card[b-8u7pnx4jm5] {
        padding: 1.5rem;
        border-radius: 12px;
        border-left-width: 5px;
    }

    .verse-text[b-8u7pnx4jm5] {
        font-size: 1.05rem;
        line-height: 1.5;
    }

    .verse-header[b-8u7pnx4jm5] {
        margin-bottom: 1rem;
    }

    .verse-icon[b-8u7pnx4jm5] {
        font-size: 1.5rem;
    }

    .verse-title[b-8u7pnx4jm5] {
        font-size: 0.8rem;
    }

    .verse-footer[b-8u7pnx4jm5] {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
        padding-top: 0.8rem;
    }
}

@media (max-width: 480px) {
    .verse-container[b-8u7pnx4jm5] {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% - 1rem);
        margin: 0 0.5rem 1.5rem 0.5rem;
    }

    .verse-card[b-8u7pnx4jm5] {
        padding: 1rem;
        border-left-width: 4px;
    }

    .verse-text[b-8u7pnx4jm5] {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .verse-icon[b-8u7pnx4jm5] {
        font-size: 1.3rem;
    }

    .verse-reference[b-8u7pnx4jm5] {
        font-size: 0.85rem;
    }
}

/* Close button */
.verse-close-btn[b-8u7pnx4jm5] {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: #5C4033;
    cursor: pointer;
    font-size: 0.95rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.6;
    z-index: 10;
}

.verse-close-btn:hover[b-8u7pnx4jm5] {
    opacity: 1;
    background: rgba(92, 64, 51, 0.1);
    transform: scale(1.1);
}

/* Collapsed container state */
.verse-container.collapsed[b-8u7pnx4jm5] {
    position: fixed !important;
    top: 120px !important;
    right: 2rem !important;
    width: 58px !important;
    height: 58px !important;
    z-index: 1000 !important;
}

/* Floating Action Button (FAB) */
.verse-fab[b-8u7pnx4jm5] {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.35);
}

.verse-fab:hover[b-8u7pnx4jm5] {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(139, 69, 19, 0.5);
}

.verse-fab-bg[b-8u7pnx4jm5] {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #D2B48C 0%, #BC9A6A 100%);
    border: 2px solid #8B4513;
    animation: versePulse-b-8u7pnx4jm5 3s ease-in-out infinite;
}

@keyframes versePulse-b-8u7pnx4jm5 {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 69, 19, 0.4); }
    50%      { box-shadow: 0 0 0 10px rgba(139, 69, 19, 0); }
}

.verse-fab-icon[b-8u7pnx4jm5] {
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustment for collapsed container */
@media (max-width: 1200px) {
    .verse-container.collapsed[b-8u7pnx4jm5] {
        position: fixed !important;
        top: 80px !important;
        right: 1rem !important;
    }
}
