/**
 * Guard Dog Access Denied Page Styles
 * 
 * @package GuardDog
 * @since 1.6.0
 */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-denied-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.access-denied-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.access-denied-title {
    color: #e74c3c;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.access-denied-message {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.access-denied-footer {
    color: #888;
    font-size: 14px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.ip-info {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 10px;
    margin: 20px 0;
    font-family: monospace;
    font-size: 12px;
    color: #666;
}
