/* Content Restriction Styling */
.bna-content-restriction {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px 30px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bna-content-restriction .restriction-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.bna-content-restriction h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.bna-content-restriction p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.bna-content-restriction .restriction-actions {
    margin-top: 30px;
}

.bna-content-restriction .restriction-actions a,
.bna-content-restriction .restriction-actions button {
    margin: 0 10px 10px 0;
    display: inline-block;
}

/* Verschillende restriction types */
.bna-content-restriction.registration-required {
    border-left: 4px solid #007cba;
}

.bna-content-restriction.membership-required {
    border-left: 4px solid #d63384;
}

.bna-content-restriction.no-data {
    border-left: 4px solid #fd7e14;
}

.bna-content-restriction.unknown-restriction,
.bna-content-restriction.generic {
    border-left: 4px solid #6c757d;
}

/* Document download restrictions - kleinere versie voor inline gebruik */
.document-download-restricted .bna-content-restriction {
    max-width: 100%;
    margin: 20px 0;
    padding: 20px;
    text-align: left;
}

.document-download-restricted .bna-content-restriction .restriction-icon {
    font-size: 24px;
    margin-bottom: 10px;
    float: left;
    margin-right: 15px;
}

.document-download-restricted .bna-content-restriction h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.document-download-restricted .bna-content-restriction p {
    margin-bottom: 10px;
}

.document-download-restricted .bna-content-restriction .restriction-actions {
    margin-top: 15px;
    clear: both;
}

/* Responsive design */
@media (max-width: 768px) {
    .bna-content-restriction {
        margin: 20px 15px;
        padding: 30px 20px;
    }
    
    .bna-content-restriction .restriction-actions a,
    .bna-content-restriction .restriction-actions button {
        display: block;
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .document-download-restricted .bna-content-restriction .restriction-icon {
        float: none;
        margin-right: 0;
        text-align: center;
        display: block;
    }
} 