/* _content/VoltVerse/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-o9iqhjzyeu] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-o9iqhjzyeu] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/VoltVerse/Components/Shared/AdCampaigns.razor.rz.scp.css */
.random-ad-container[b-uopxn5quni] {
    max-width: 400px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.ad-card[b-uopxn5quni] {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ad-card:hover[b-uopxn5quni] {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.ad-image[b-uopxn5quni] {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.ad-image img[b-uopxn5quni] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ad-card:hover .ad-image img[b-uopxn5quni] {
    transform: scale(1.03);
}

.ad-content[b-uopxn5quni] {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ad-title[b-uopxn5quni] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.ad-description[b-uopxn5quni] {
    color: #4a5568;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-empty-state[b-uopxn5quni] {
    text-align: center;
    padding: 2rem;
    color: #a0aec0;
}

.ad-empty-state i[b-uopxn5quni] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #e2e8f0;
}

.ad-empty-state p[b-uopxn5quni] {
    margin: 0;
    font-size: 0.9375rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .random-ad-container[b-uopxn5quni] {
        max-width: 100%;
    }
    
    .ad-image[b-uopxn5quni] {
        height: 160px;
    }
    
    .ad-content[b-uopxn5quni] {
        padding: 1rem;
    }
    
    .ad-title[b-uopxn5quni] {
        font-size: 1.125rem;
    }
    
    .ad-description[b-uopxn5quni] {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
    }
}
