/* ============================================
   ADMIN HELP DRAWER COMPONENT
   ============================================ */

.help-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.help-drawer.show {
    right: 0;
}

.help-drawer-header {
    position: sticky;
    top: 0;
    background: var(--bs-primary);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.help-drawer-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.help-drawer-header .btn-light {
    padding: 0.25rem 0.5rem;
}

.help-drawer-body {
    padding: 1.5rem;
}

.help-drawer-body h6 {
    font-weight: 600;
    color: var(--bs-dark);
}

.help-item {
    padding: 0.75rem;
    background: var(--bs-light);
    border-radius: 0.375rem;
    border-left: 3px solid var(--bs-primary);
}

.help-item .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
}

.help-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Contact Avatar */
.contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bs-primary-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .help-drawer {
        width: 100%;
        right: -100%;
    }
    
    .help-drawer.show {
        right: 0;
    }
}
