/**
 * ChatProjects Access Denied Page Styles
 *
 * Provides layout styling for the standalone access denied screen.
 *
 * @package ChatProjects
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.chatprojects-access-denied {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #f3f4f6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.access-denied-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.access-denied-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: #ef4444;
}

.access-denied-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.access-denied-message {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.access-denied-roles {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.access-denied-roles h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.access-denied-roles ul {
    list-style: none;
    font-size: 0.875rem;
    color: #6b7280;
}

.access-denied-roles li {
    padding: 0.25rem 0;
}

.access-denied-roles li strong {
    color: #374151;
}

.access-denied-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.access-denied-button:hover {
    background: #1d4ed8;
}
