/* Theme Toggle Styles */

.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.theme-toggle i {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.theme-toggle:hover i {
    transform: rotate(180deg);
}

/* Minimal dark theme */
[data-theme="dark"] body {
    background: #1f2937;
    color: #f9fafb;
}

[data-theme="dark"] .job-card {
    background: #374151;
    color: #f9fafb;
}

[data-theme="dark"] input {
    background: #374151;
    color: #f9fafb;
    border-color: #4b5563;
}