/**
 * Scoped Frontend Styles for Spreadsheet Workflow Portal
 * All rules strictly prefixed under .swp-app-container, .swp-scoped, .swp-admin-wrap
 */

.swp-scoped,
.swp-app-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1e293b;
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.swp-portal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.swp-role-tag {
    background: #e0f2fe;
    color: #0369a1;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 9999px;
    margin-left: 8px;
}

.swp-btn-primary {
    background: #0284c7;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.2s ease;
}

.swp-btn-primary:hover {
    background: #0369a1;
    color: #ffffff;
}

@media print {
    .swp-no-print {
        display: none !important;
    }
    .swp-scoped {
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        background: transparent !important;
    }
}
