/* 
 * Custom CSS for Targeted Limited Users
 * Add your custom styles here to hide or customize elements for restricted users.
 */
/* Hide admin menue by CSS — runs before paint then it will be shown after hiding any unallowed items */
#adminmenuwrap {
    display: none;
}

body {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: #f1f5f9 !important;
}

.aur-allowed-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    text-decoration: none;
    transition: background .15s;
}

.aur-allowed-link:hover {
    background: #eff6ff;
}

.aur-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #dbeafe;
    border-radius: 8px;
    flex-shrink: 0;
}

.aur-dash-btn {
    display: block;
    text-align: center;
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 12px;
    letter-spacing: 0.2px;
    transition: background .15s;
}

.aur-dash-btn:hover {
    background: #1e293b;
}