body {
    background: var(--white);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unauthorized-content {
    text-align: center;
    color: #333;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.icon-wrapper {
    background: var(--navbar-green);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(0, 77, 0, 0.3);
}

.icon-wrapper i {
    font-size: 4rem;
    color: var(--white);
}

.icon-wrapper.danger {
    background: #dc3545;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.icon-wrapper.info {
    background: var(--navbar-orange);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navbar-green);
}

.lead {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #666;
}

.text-muted {
    color: #888 !important;
}

.btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    margin: 0.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--navbar-green);
    border-color: var(--navbar-green);
    color: var(--white);
}

.btn-primary:hover {
    background: #003d00;
    border-color: #003d00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 77, 0, 0.3);
    color: var(--white);
}

.btn-outline-secondary {
    background: transparent;
    border-color: #6c757d;
    color: #6c757d;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    border-color: #6c757d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(108, 117, 125, 0.3);
    color: var(--white);
}

.btn-outline-info {
    background: transparent;
    border-color: var(--navbar-orange);
    color: var(--navbar-orange);
}

.btn-outline-info:hover {
    background: var(--navbar-orange);
    border-color: var(--navbar-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
    color: var(--white);
}

.btn-outline-danger {
    background: transparent;
    border-color: #dc3545;
    color: #dc3545;
}

.btn-outline-danger:hover {
    background: #dc3545;
    border-color: #dc3545;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
    color: var(--white);
}

.btn-success {
    background: #28a745;
    border-color: #28a745;
    color: var(--white);
}

.btn-success:hover {
    background: #218838;
    border-color: #1e7e34;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
    color: var(--white);
}

.badge {
    background: var(--navbar-green);
    border: none;
    color: var(--white);
    border-radius: 50px;
    padding: 0.5rem 1rem;
}

.alert {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #333;
    border-radius: 20px;
}

.quick-links .btn-sm {
    border-radius: 50px;
    margin: 0.25rem;
    background: var(--navbar-green);
    border: 1px solid var(--navbar-green);
    color: var(--white);
    padding: 0.4rem 1rem;
}

.quick-links .btn-sm:hover {
    background: #003d00;
    border-color: #003d00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 77, 0, 0.3);
    color: var(--white);
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.quick-links-section {
    margin: 2rem 0;
}

.quick-links-section hr {
    border-color: #dee2e6;
    margin: 2rem 0;
}

.help-text {
    margin-top: 2rem;
    opacity: 0.8;
    color: #666;
}

/* Additional circular elements */
.alert {
    border-radius: 25px;
}

.badge {
    border-radius: 50px;
}

.quick-links-section h6 {
    background: var(--navbar-green);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .icon-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .icon-wrapper i {
        font-size: 3rem;
    }
    
    .action-buttons {
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .unauthorized-content {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        margin: 0.25rem;
    }
    
    .icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .icon-wrapper i {
        font-size: 2.5rem;
    }
}