/**
 * WorkBank Core Plugin Styles
 */

/* Auth forms */
.wb-auth-wrap {
    min-height: 60vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.wb-role-option {
    transition: all 0.2s;
}
.wb-role-option:has(input:checked) {
    border-color: var(--wb-accent) !important;
    background: rgba(0, 212, 170, 0.05) !important;
}

/* Listing type selector */
.wb-listing-type {
    transition: all 0.2s;
}
.wb-listing-type:has(input:checked) {
    border-color: var(--wb-accent) !important;
    background: rgba(0, 212, 170, 0.05) !important;
}

/* Job card hover animation */
.wb-job-card {
    transition: all 0.2s ease;
}
.wb-job-card:hover {
    transform: translateX(4px);
}

/* Dashboard mobile toggle */
@media (max-width: 768px) {
    .wb-dashboard {
        grid-template-columns: 1fr !important;
    }
    .wb-sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        width: 260px;
        z-index: 9999;
        background: var(--wb-bg) !important;
        transition: left 0.3s;
    }
    .wb-sidebar.open {
        left: 0;
    }
    .wb-mobile-dash-toggle {
        display: block !important;
    }
}
.wb-mobile-dash-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--wb-gradient);
    color: var(--wb-bg);
    font-size: 24px;
    border: none;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
}

/* Adzuna badge */
.wb-adzuna-badge {
    font-size: 9px;
    background: rgba(255,255,255,0.05);
    color: var(--wb-text-faint);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: var(--wb-font-mono);
}

/* Smooth loading states */
.wb-loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Select styles handled by theme CSS */

/* Print styles */
@media print {
    .wb-sidebar, .wb-header, .wb-footer, .wb-btn { display: none !important; }
    body { background: #fff; color: #000; }
}
