/* Job Quick Actions Styles */
.job-quick-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.quick-btn {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.quick-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Status Dropdown Styles */
.status-dropdown-wrapper {
    position: relative;
}

.status-btn {
    cursor: pointer;
    transition: all 0.2s;
}

.status-btn:hover {
    opacity: 0.8;
}

.status-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #1f1d2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    min-width: 160px;
    z-index: 1000;
    overflow: hidden;
}

.status-option {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-option:last-child {
    border-bottom: none;
}

.status-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.status-dropdown.hidden {
    display: none;
}
